diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-08 23:32:33 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-08 23:32:33 -0700 |
commit | aac7c0c174d4624a075b89e0547f846f985e5553 (patch) | |
tree | bc66db5abbeafbd30a268ee0e3f2a3ef484ceeb6 /test/pushseg.asm | |
parent | c3ba3acf70cb9d1ea8c52da3b4024ffb8da285b2 (diff) | |
download | nasm-aac7c0c174d4624a075b89e0547f846f985e5553.tar.gz nasm-aac7c0c174d4624a075b89e0547f846f985e5553.tar.bz2 nasm-aac7c0c174d4624a075b89e0547f846f985e5553.zip |
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>
Diffstat (limited to 'test/pushseg.asm')
-rw-r--r-- | test/pushseg.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pushseg.asm b/test/pushseg.asm index a8d88c4..7bd7c95 100644 --- a/test/pushseg.asm +++ b/test/pushseg.asm @@ -14,4 +14,4 @@ pop ss pop es pop ds - ; pop cs ; 8086 only, not implemented + pop cs ; 8086 only, does not disassemble |