Skip to content

Commit 67deaa2

Browse files
author
mikeblome
committed
removed unnecessary MASM from some headings
1 parent 98f42f8 commit 67deaa2

15 files changed

Lines changed: 45 additions & 45 deletions

docs/assembler/masm/assume.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ f1_keywords: ["ASSUME"]
55
helpviewer_keywords: ["ASSUME directive"]
66
ms.assetid: cd162070-aee9-4c65-babc-005c6cc73d7c
77
---
8-
# ASSUME (32-bit MASM)
8+
# ASSUME
99

1010
Enables error checking for register values. (32-bit MASM only.)
1111

docs/assembler/masm/comment-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ f1_keywords: ["Comment"]
55
helpviewer_keywords: ["COMMENT directive"]
66
ms.assetid: b255ebf2-99b0-401c-a2c3-50ce57533578
77
---
8-
# COMMENT (MASM)
8+
# COMMENT
99

1010
Treats all *text* between or on the same line as the delimiters as a comment.
1111

docs/assembler/masm/dosseg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ f1_keywords: ["DOSSEG"]
55
helpviewer_keywords: ["DOSSEG directive"]
66
ms.assetid: 4312826a-1547-4d48-bfd7-cfaf6d037609
77
---
8-
# DOSSEG (32-bit MASM)
8+
# DOSSEG
99

10-
Identical to [.DOSSEG](dot-dosseg.md), which is the preferred form. (32-bit MASM only.)
10+
(32-bit MASM only.) Identical to [.DOSSEG](dot-dosseg.md), which is the preferred form. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ f1_keywords: [".CODE"]
55
helpviewer_keywords: [".CODE directive"]
66
ms.assetid: 2b8c882c-c0d2-4fa3-8335-e6b12717a4f4
77
---
8-
# .CODE (32-bit MASM)
8+
# .CODE
99

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

1212
## Syntax
1313

docs/assembler/masm/dot-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ f1_keywords: [".DATA"]
55
helpviewer_keywords: [".DATA directive"]
66
ms.assetid: 32797935-9c79-46e0-bf6f-07d0c2bf1dc1
77
---
8-
# .DATA (32-bit MASM)
8+
# .DATA
99

10-
When used with [.MODEL](dot-model.md), starts a near data segment for initialized data (segment name _DATA).
10+
(32-bit MASM only.) When used with [.MODEL](dot-model.md), starts a near data segment for initialized data (segment name _DATA).
1111

1212
## Syntax
1313

docs/assembler/masm/end-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ f1_keywords: ["end"]
55
helpviewer_keywords: ["END directive"]
66
ms.assetid: 128d1c17-f4c4-4ac6-bdb7-d14b4a9a7f4c
77
---
8-
# END (MASM)
8+
# END
99

1010
Marks the end of a module and, optionally, sets the program entry point to *procId*.
1111

docs/assembler/masm/ends-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ f1_keywords: ["ENDS"]
55
helpviewer_keywords: ["ENDS directive"]
66
ms.assetid: 30f68c58-de1f-4bdd-ac83-4658bdbaad65
77
---
8-
# ENDS (MASM)
8+
# ENDS
99

1010
Marks the end of segment, structure, or union *name* previously begun with [SEGMENT](segment.md), [STRUCT](struct-masm.md), [UNION](union.md), or a simplified segment directive.
1111

docs/assembler/masm/group.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ f1_keywords: ["group"]
55
helpviewer_keywords: ["GROUP directive"]
66
ms.assetid: 55dc9548-154e-486d-849a-135e4631eca9
77
---
8-
# GROUP (32-bit MASM)
8+
# GROUP
99

10-
Add the specified *segments* to the group called *name*. (32-bit MASM only.)
10+
(32-bit MASM only.) Add the specified *segments* to the group called *name*.
1111

1212
## Syntax
1313

docs/assembler/masm/include-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ f1_keywords: ["include"]
55
helpviewer_keywords: ["INCLUDE directive"]
66
ms.assetid: 1c7964ee-715c-414e-a45e-74af93476eb4
77
---
8-
# INCLUDE (MASM)
8+
# INCLUDE
99

1010
Inserts source code from the source file given by *filename* into the current source file during assembly.
1111

docs/assembler/masm/includelib-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ f1_keywords: ["INCLUDELIB"]
55
helpviewer_keywords: ["INCLUDELIB directive"]
66
ms.assetid: 5455d004-8202-4b57-93f3-9aa66f133a2d
77
---
8-
# INCLUDELIB (MASM)
8+
# INCLUDELIB
99

1010
Informs the linker that the current module should be linked with *libraryname*.
1111

0 commit comments

Comments
 (0)