From aac7c0c174d4624a075b89e0547f846f985e5553 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 8 Oct 2008 23:32:33 -0700 Subject: [PATCH] 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 --- test/pushseg.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4