Skip to content

Commit 2ec5b0f

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#1800 from MicrosoftDocs/master637124643743524746
Fix git push error for protected CLA branch
2 parents 98b7fdf + 0d27121 commit 2ec5b0f

325 files changed

Lines changed: 2329 additions & 954 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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: "ALIAS (MASM)"
3-
ms.date: "08/30/2018"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["Alias"]
55
helpviewer_keywords: ["ALIAS directive"]
66
ms.assetid: d9725c49-58de-41da-ab01-b06a56cf5cf2
77
---
8-
# ALIAS (MASM)
8+
# ALIAS
99

1010
The **ALIAS** directive creates an alternate name for a function. This lets you create multiple names for a function, or create libraries that allow the linker (LINK.exe) to map an old function to a new function.
1111

@@ -23,4 +23,5 @@ The alternate or alias name. The angle brackets are required.
2323

2424
## See also
2525

26-
[Directives Reference](../../assembler/masm/directives-reference.md)
26+
[Directives Reference](directives-reference.md)\
27+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/align-masm.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: "ALIGN (MASM)"
3-
ms.date: "01/02/2019"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["align"]
55
helpviewer_keywords: ["ALIGN directive"]
66
ms.assetid: 1c386b23-439f-4ec3-a6de-74427b25e47f
77
---
8-
# ALIGN (MASM)
8+
# ALIGN
99

1010
The **ALIGN** directive aligns the next data element or instruction on an address that is a multiple of its parameter. The parameter must be a power of 2 (for example, 1, 2, 4, and so on) that is less than or equal to the segment alignment.
1111

1212
## Syntax
1313

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

@@ -24,4 +24,5 @@ When data is aligned, the skipped space is padded with zeroes. When instructions
2424
## See also
2525

2626
[EVEN](even.md)\
27-
[Directives reference](directives-reference.md)
27+
[Directives reference](directives-reference.md)\
28+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/assume.md

Lines changed: 3 additions & 2 deletions
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

@@ -22,4 +22,5 @@ After an **ASSUME** is put into effect, the assembler watches for changes to the
2222

2323
## See also
2424

25-
[Directives Reference](../../assembler/masm/directives-reference.md)
25+
[Directives Reference](directives-reference.md)\
26+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/at-at.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
---
22
title: "@@:"
3-
ms.date: "08/30/2018"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["@@:"]
55
helpviewer_keywords: ["@@: symbol"]
66
ms.assetid: 4c0aa730-d534-4efd-9608-54d683d78654
77
---
88
# \@\@:
99

10-
Defines a code label recognizable only between *label1* and *label2*, where *label1* is either start of code or the previous `@@:` label, and *label2* is either end of code or the next `@@:` label. See [\@B](../../assembler/masm/at-b.md) and [\@F](../../assembler/masm/at-f.md).
10+
Defines a code label recognizable only between *label1* and *label2*, where *label1* is either start of code or the previous `@@:` label, and *label2* is either end of code or the next `@@:` label. See [\@B](at-b.md) and [\@F](at-f.md).
1111

1212
## Syntax
1313

1414
> **\@\@:**
1515
1616
## See also
1717

18-
[Symbols reference](symbols-reference.md)
18+
[Symbols reference](symbols-reference.md)\
19+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/at-b.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
---
22
title: "@B"
3-
ms.date: "08/30/2018"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["@B"]
55
helpviewer_keywords: ["@B symbol"]
66
ms.assetid: ca17c71a-4a5d-4470-a098-484c781dbfa7
77
---
88
# \@B
99

10-
The location of the previous [\@\@:](../../assembler/masm/at-at.md) label.
10+
The location of the previous [\@\@:](at-at.md) label.
1111

1212
## Syntax
1313

1414
> **\@B**
1515
1616
## See also
1717

18-
[Symbols reference](symbols-reference.md)
18+
[Symbols reference](symbols-reference.md)\
19+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/at-catstr.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "@CatStr"
3-
ms.date: "08/30/2018"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["@CatStr"]
55
helpviewer_keywords: ["@CatStr symbol"]
66
ms.assetid: 01fcc590-1ec2-42f6-b868-ed0433297c26
@@ -15,4 +15,5 @@ Macro function that concatenates one or more strings. Returns a string.
1515
1616
## See also
1717

18-
[Symbols reference](symbols-reference.md)
18+
[Symbols reference](symbols-reference.md)\
19+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/at-code.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "@code"
3-
ms.date: "08/30/2018"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["@code"]
55
helpviewer_keywords: ["@code symbol"]
66
ms.assetid: 44e050e6-d254-4157-9022-cf6afbaa0515
@@ -15,4 +15,5 @@ The name of the code segment (text macro).
1515
1616
## See also
1717

18-
[Symbols reference](symbols-reference.md)
18+
[Symbols reference](symbols-reference.md)\
19+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/at-codesize.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ ms.assetid: 6e18d99f-9999-41fe-9330-b80de8f735d5
1515
1616
## See also
1717

18-
[Symbols reference](symbols-reference.md)
18+
[Symbols reference](symbols-reference.md)\
19+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/at-cpu.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "@Cpu"
3-
ms.date: "08/30/2018"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["@Cpu"]
55
helpviewer_keywords: ["@Cpu symbol"]
66
ms.assetid: 04f9fdf6-9772-407e-9c09-c12bed29087b
@@ -15,4 +15,5 @@ A bit mask specifying the processor mode (numeric equate).
1515
1616
## See also
1717

18-
[Symbols reference](symbols-reference.md)
18+
[Symbols reference](symbols-reference.md)\
19+
[MASM BNF Grammar](masm-bnf-grammar.md)

docs/assembler/masm/at-curseg.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "@CurSeg"
3-
ms.date: "08/30/2018"
3+
ms.date: "12/17/2019"
44
f1_keywords: ["@CurSeg"]
55
helpviewer_keywords: ["@CurSeg symbol"]
66
ms.assetid: 8fbf90c1-7734-4113-9ba2-6ec664b3b59f
@@ -15,4 +15,5 @@ The name of the current segment (text macro).
1515
1616
## See also
1717

18-
[Symbols reference](symbols-reference.md)
18+
[Symbols reference](symbols-reference.md)\
19+
[MASM BNF Grammar](masm-bnf-grammar.md)

0 commit comments

Comments
 (0)