Skip to content

Commit 05c25fa

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#1688 from MicrosoftDocs/master637086637128347109
Fix git push error for protected CLA branch
2 parents bf52f73 + 0849774 commit 05c25fa

Some content is hidden

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

41 files changed

+115
-115
lines changed

docs/assembler/masm/assume.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: "ASSUME"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: ["ASSUME"]
55
helpviewer_keywords: ["ASSUME directive"]
66
ms.assetid: cd162070-aee9-4c65-babc-005c6cc73d7c
77
---
8-
# ASSUME
8+
# ASSUME (32-bit MASM)
99

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

1212
## Syntax
1313

docs/assembler/masm/dosseg.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: "DOSSEG"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: ["DOSSEG"]
55
helpviewer_keywords: ["DOSSEG directive"]
66
ms.assetid: 4312826a-1547-4d48-bfd7-cfaf6d037609
77
---
8-
# DOSSEG
8+
# DOSSEG (32-bit MASM)
99

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

1212
## Syntax
1313

docs/assembler/masm/dot-386.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".386"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".386"]
55
helpviewer_keywords: [".386 directive"]
66
ms.assetid: a270d215-2d8c-4a86-9dcf-62d6e2fbfbb6
77
---
8-
# .386
8+
# .386 (32-bit MASM)
99

10-
Enables assembly of nonprivileged instructions for the 80386 processor; disables assembly of instructions introduced with later processors.
10+
Enables assembly of nonprivileged instructions for the 80386 processor; disables assembly of instructions introduced with later processors. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-386p.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".386P"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".386P"]
55
helpviewer_keywords: [".386P directive"]
66
ms.assetid: 15199091-3bb7-4270-bb9b-878c1c2f2146
77
---
8-
# .386P
8+
# .386P (32-bit MASM)
99

10-
Enables assembly of all instructions (including privileged) for the 80386 processor; disables assembly of instructions introduced with later processors.
10+
Enables assembly of all instructions (including privileged) for the 80386 processor; disables assembly of instructions introduced with later processors. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-387.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".387"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".387"]
55
helpviewer_keywords: [".387 directive"]
66
ms.assetid: 031fa63b-4b69-4043-9bb2-8dabbdbbf1a7
77
---
8-
# .387
8+
# .387 (32-bit MASM)
99

10-
Enables assembly of instructions for the 80387 coprocessor.
10+
Enables assembly of instructions for the 80387 coprocessor. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-486.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".486"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".486"]
55
helpviewer_keywords: [".486 directive"]
66
ms.assetid: f2dfc3fc-f564-4014-874b-9fc68dd348dc
77
---
8-
# .486
8+
# .486 (32-bit MASM)
99

10-
Enables assembly of nonprivileged instructions for the 80486 processor.
10+
Enables assembly of nonprivileged instructions for the 80486 processor. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-486p.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".486P"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".486P"]
55
helpviewer_keywords: [".486P directive"]
66
ms.assetid: ad1ff7a8-18e8-47cd-8e3b-dfd57a0ca370
77
---
8-
# .486P
8+
# .486P (32-bit MASM)
99

10-
Enables assembly of all instructions (including privileged) for the 80486 processor.
10+
Enables assembly of all instructions (including privileged) for the 80486 processor. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-586.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".586"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".586"]
55
helpviewer_keywords: [".586 directive"]
66
ms.assetid: 8ceff033-8ce2-4b13-afd7-7f99c3396402
77
---
8-
# .586
8+
# .586 (32-bit MASM)
99

10-
Enables assembly of nonprivileged instructions for the Pentium processor.
10+
Enables assembly of nonprivileged instructions for the Pentium processor. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-586p.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".586P"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".586P"]
55
helpviewer_keywords: [".586P directive"]
66
ms.assetid: 90da2a7d-66f4-4073-b1a9-874de6e8f05d
77
---
8-
# .586P
8+
# .586P (32-bit MASM)
99

10-
Enables assembly of all instructions (including privileged) for the Pentium processor.
10+
Enables assembly of all instructions (including privileged) for the Pentium processor. (32-bit MASM only.)
1111

1212
## Syntax
1313

docs/assembler/masm/dot-686.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: ".686"
3-
ms.date: "08/30/2018"
3+
ms.date: "11/05/2019"
44
f1_keywords: [".686"]
55
helpviewer_keywords: [".686 directive"]
66
ms.assetid: 58aa0688-8eb9-4456-8f91-9ff7ea744fe2
77
---
8-
# .686
8+
# .686 (32-bit MASM)
99

10-
Enables assembly of nonprivileged instructions for the Pentium Pro processor.
10+
Enables assembly of nonprivileged instructions for the Pentium Pro processor. (32-bit MASM only.)
1111

1212
## Syntax
1313

0 commit comments

Comments
 (0)