Skip to content

Commit 24fa752

Browse files
author
mikeblome
committed
adding files from previous pr
1 parent 2ad50e1 commit 24fa752

215 files changed

Lines changed: 327 additions & 313 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/assembler/masm/alias-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The **ALIAS** directive creates an alternate name for a function. This lets you
1111

1212
## Syntax
1313

14-
> ALIAS \<*alias*> = \<*actual-name*>
14+
> **ALIAS** \<*alias*> = \<*actual-name*>
1515
1616
#### Parameters
1717

docs/assembler/masm/align-masm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The **ALIGN** directive aligns the next data element or instruction on an addres
1111

1212
## Syntax
1313

14-
> ALIGN [[*number*]]
14+
> **ALIGN** [[*number*]]
1515
1616
## Remarks
1717

docs/assembler/masm/assume.md

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

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

1212
## Syntax
1313

14-
> ASSUME *segregister*:*name* [[, *segregister*:*name*]]...<br/>
15-
> ASSUME *dataregister*:*type* [[, *dataregister*:*type*]]...<br/>
16-
> ASSUME *register*:ERROR [[, *register*:ERROR]]...<br/>
17-
> ASSUME [[*register*:]] NOTHING [[, *register*:NOTHING]]...
14+
> **ASSUME** *segregister*:*name* [[, *segregister*:*name*]]...<br/>
15+
> **ASSUME** *dataregister*:*type* [[, *dataregister*:*type*]]...<br/>
16+
> **ASSUME** *register*:**ERROR** [[, *register*:**ERROR**]]...<br/>
17+
> **ASSUME** [[*register*:]] **NOTHING** [[, *register*:NOTHING]]...
1818
1919
## Remarks
2020

21-
After an `ASSUME` is put into effect, the assembler watches for changes to the values of the given registers. **ERROR** generates an error if the register is used. **NOTHING** removes register error checking. You can combine different kinds of assumptions in one statement.
21+
After an **ASSUME** is put into effect, the assembler watches for changes to the values of the given registers. **ERROR** generates an error if the register is used. **NOTHING** removes register error checking. You can combine different kinds of assumptions in one statement.
2222

2323
## See also
2424

docs/assembler/masm/byte-masm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ ms.assetid: 8dd94476-c069-4585-a478-3cb2e8e6ae54
77
---
88
# BYTE (MASM)
99

10-
Allocates and optionally initializes a byte of storage for each `initializer`.
10+
Allocates and optionally initializes a byte of storage for each *initializer*.
1111

1212
## Syntax
1313

14-
> [[name]] BYTEinitializer [[, initializer]] ...
14+
> [[*name*]] **BYTE** *initializer* [[, *initializer*]] ...
1515
1616
## Remarks
1717

docs/assembler/masm/catstr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Concatenates text items.
1111

1212
## Syntax
1313

14-
> name CATSTR [[textitem1 [[, textitem2]] ...]]
14+
> *name* **CATSTR** [[*textitem1* [[, *textitem2*]] ...]]
1515
1616
## Remarks
1717

18-
Each text item can be a literal string, a constant preceded by a `%`, or the string returned by a macro function.
18+
Each text item can be a literal string, a constant preceded by a **%**, or the string returned by a macro function.
1919

2020
## See also
2121

docs/assembler/masm/comment-masm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Treats all *text* between or on the same line as the delimiters as a comment.
1111

1212
## Syntax
1313

14-
> COMMENT delimiter [[text]]<br/>
15-
> [[text]]<br/>
16-
> [[text]] delimiter [[text]]
14+
> **COMMENT** *delimiter* [[*text*]]<br/>
15+
> [[*text*]]<br/>
16+
> [[*text*]] *delimiter* [[*text*]]
1717
1818
## See also
1919

docs/assembler/masm/db.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ ms.assetid: 0c69ccaa-043f-46e1-9f95-dc76d9bc87c8
77
---
88
# DB
99

10-
Allocates and optionally initializes a byte of storage for each `initializer`. `DB` is a synonym of [BYTE](../../assembler/masm/byte-masm.md)
10+
Allocates and optionally initializes a byte of storage for each *initializer*. **DB** is a synonym of [BYTE](../../assembler/masm/byte-masm.md)
1111

1212
## Syntax
1313

14-
> [[name]] DB initializer [[, initializer]] ...
14+
> [[*name*]] **DB** *initializer* [[, *initializer*]] ...
1515
1616
## Remarks
1717

docs/assembler/masm/dd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ ms.assetid: 0c238628-2fe2-437e-979d-a90bdae7b478
77
---
88
# DD
99

10-
Allocates and optionally initializes a double word (4 bytes) of storage for each `initializer`. `DD` is a synonym of [DWORD](../../assembler/masm/dword.md).
10+
Allocates and optionally initializes a double word (4 bytes) of storage for each *initializer*. **DD** is a synonym of [DWORD](../../assembler/masm/dword.md).
1111

1212
## Syntax
1313

14-
> [[name]] DD initializer [[, initializer]]...
14+
> [[*name*]] **DD** *initializer* [[, *initializer*]]...
1515
1616
## Remarks
1717

docs/assembler/masm/df.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ ms.assetid: b5587c29-3da9-4c46-aa3a-1ec42d6fa703
77
---
88
# DF
99

10-
Allocates and optionally initializes 6 bytes of storage for each `initializer`. `DF` is a synonym of [FWORD](../../assembler/masm/fword.md).
10+
Allocates and optionally initializes 6 bytes of storage for each *initializer*. **DF** is a synonym of [FWORD](../../assembler/masm/fword.md).
1111

1212
## Syntax
1313

14-
> [[name]] DF initializer [[, initializer]]...
14+
> [[*name*]] **DF** *initializer* [[, *initializer*]]...
1515
1616
## Remarks
1717

docs/assembler/masm/dosseg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Identical to [.DOSSEG](../../assembler/masm/dot-dosseg.md), which is the preferr
1111

1212
## Syntax
1313

14-
> DOSSEG
14+
> **DOSSEG**
1515
1616
## See also
1717

0 commit comments

Comments
 (0)