Skip to content

Commit a1acd66

Browse files
authored
Merge pull request #5134 from nir9/patch-2
Fix MASM dot-code and dot-data to indicate they also work on x64
2 parents 845be2d + 07887f4 commit a1acd66

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/assembler/masm/dot-code.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ ms.assetid: 2b8c882c-c0d2-4fa3-8335-e6b12717a4f4
88
---
99
# .CODE
1010

11-
(32-bit MASM only.) When used with [.MODEL](dot-model.md), indicates the start of a code segment.
11+
Indicates the start of a code segment.
12+
13+
When using 32-bit MASM, this should be used along with [.MODEL](dot-model.md).
1214

1315
## Syntax
1416

docs/assembler/masm/dot-data.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ ms.assetid: 32797935-9c79-46e0-bf6f-07d0c2bf1dc1
88
---
99
# .DATA
1010

11-
(32-bit MASM only.) When used with [.MODEL](dot-model.md), starts a near data segment for initialized data (segment name _DATA).
11+
Indicates the start of a data segment.
12+
13+
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).
1214

1315
## Syntax
1416

0 commit comments

Comments
 (0)