summaryrefslogtreecommitdiff
path: root/test/test2a.asm
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-04-30 20:59:21 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-04-30 20:59:21 +0000
commitaf535c16cf3f9f628384ec834e3aa325709cb37b (patch)
treec582b65fc34ae4e66aa559ebe901c76aefa05bd5 /test/test2a.asm
parent41bf8002b2fa402bd344a290fcc9f65de328859c (diff)
downloadnasm-af535c16cf3f9f628384ec834e3aa325709cb37b.tar.gz
nasm-af535c16cf3f9f628384ec834e3aa325709cb37b.tar.bz2
nasm-af535c16cf3f9f628384ec834e3aa325709cb37b.zip
NASM 0.98.03
Diffstat (limited to 'test/test2a.asm')
-rw-r--r--test/test2a.asm22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/test2a.asm b/test/test2a.asm
new file mode 100644
index 0000000..2ed09a7
--- /dev/null
+++ b/test/test2a.asm
@@ -0,0 +1,22 @@
+ use32
+ cpu P3
+
+debugdump001:
+goo: jmp foo
+; cpu 386
+ jc near foo
+ mov ax,[si+5]
+ mov ax,[si-7]
+ mov ax,[si+n]
+ align 16
+; cpu 486
+ bswap edx
+; cpu 186
+ resb 10
+foo: jmp goo
+ jc goo
+ jmp short goo
+debugdump002: push 0
+n equ 3
+
+