nasm/test/pushseg.asm
H. Peter Anvin aac7c0c174 test/pushseg.asm: add "pop cs"
"pop cs" is an 8086-only opcode; we support it for assembly but not
for disassembly.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2008-10-08 23:32:33 -07:00

17 lines
228 B
NASM

;Testname=test; Arguments=-fbin -opushseg.bin; Files=stdout stderr pushseg.bin
bits 16
push cs
push ds
push es
push ss
push fs
push gs
pop gs
pop fs
pop ss
pop es
pop ds
pop cs ; 8086 only, does not disassemble