diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:59:21 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 20:59:21 +0000 |
commit | af535c16cf3f9f628384ec834e3aa325709cb37b (patch) | |
tree | c582b65fc34ae4e66aa559ebe901c76aefa05bd5 /test/test2a.asm | |
parent | 41bf8002b2fa402bd344a290fcc9f65de328859c (diff) | |
download | nasm-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.asm | 22 |
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 + + |