summaryrefslogtreecommitdiff
path: root/bin86-0.3/as/asm/group7.asm
diff options
context:
space:
mode:
Diffstat (limited to 'bin86-0.3/as/asm/group7.asm')
-rw-r--r--bin86-0.3/as/asm/group7.asm34
1 files changed, 0 insertions, 34 deletions
diff --git a/bin86-0.3/as/asm/group7.asm b/bin86-0.3/as/asm/group7.asm
deleted file mode 100644
index 0df497c..0000000
--- a/bin86-0.3/as/asm/group7.asm
+++ /dev/null
@@ -1,34 +0,0 @@
-; group7.asm
-; 0F 01 /nnn
-
-; INVLPG m nnn = 111
-; LGDT m16&32 nnn = 010
-; LIDT m16&32 nnn = 011
-; LMSW r/m16 nnn = 110
-; SGDT m nnn = 000
-; SIDT m nnn = 001
-; SMSW r/m16 nnn = 100
-
- LGDT EAX ; register not allowed
- LGDT #$1234 ; immed not allowed
- LGDT WORD PTR [BX] ; illegal size
-
- LGDT [BX]
- LGDT PWORD PTR [BX]
- LGDT FWORD PTR [BX]
- LGDT [EAX]
-
- INVLPG [EDI]
- SGDT [BP]
- SIDT [EBX]
-
- LMSW AL ; illeg size
- LMSW EAX ; illeg size
- LMSW #$1234 ; immed not allowed
- LMSW DS ; segreg not allowed
-
- LMSW AX
- LMSW [BX]
- LMSW [EAX]
-
- SMSW BX