Skip to content

Commit 33685c5

Browse files
authored
Merge pull request #5712 from MicrosoftDocs/FromPublicMasterBranch
Confirm merge from FromPublicMasterBranch to main to sync with https://github.com/MicrosoftDocs/cpp-docs (branch main)
2 parents 9e8816f + a1acd66 commit 33685c5

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)