Skip to content

Fix MASM dot-code and dot-data to indicate they also work on x64 #5134

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/assembler/masm/dot-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ ms.assetid: 2b8c882c-c0d2-4fa3-8335-e6b12717a4f4
---
# .CODE

(32-bit MASM only.) When used with [.MODEL](dot-model.md), indicates the start of a code segment.
Indicates the start of a code segment.

When using 32-bit MASM, this should be used along with [.MODEL](dot-model.md).

## Syntax

Expand Down
4 changes: 3 additions & 1 deletion docs/assembler/masm/dot-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ ms.assetid: 32797935-9c79-46e0-bf6f-07d0c2bf1dc1
---
# .DATA

(32-bit MASM only.) When used with [.MODEL](dot-model.md), starts a near data segment for initialized data (segment name _DATA).
Indicates the start of a data segment.

When using 32-bit MASM, this starts a near data segment for initialized data (segment name _DATA) and should be used along with [.MODEL](dot-model.md).

## Syntax

Expand Down