diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-09-12 16:34:06 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-09-12 16:34:06 +0000 |
commit | 24cfef4f8f7ee01f841e86972001b06acae243ea (patch) | |
tree | a3489ab0d04671bb27847c9be3fad246d6bb2e85 /test | |
parent | 628168c50264147e1b8b200833f25a4e166f5cd8 (diff) | |
download | nasm-24cfef4f8f7ee01f841e86972001b06acae243ea.tar.gz nasm-24cfef4f8f7ee01f841e86972001b06acae243ea.tar.bz2 nasm-24cfef4f8f7ee01f841e86972001b06acae243ea.zip |
Clean up unnecessary dependencies.
Diffstat (limited to 'test')
-rw-r--r-- | test/absolute.asm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/test/absolute.asm b/test/absolute.asm new file mode 100644 index 0000000..901a83f --- /dev/null +++ b/test/absolute.asm @@ -0,0 +1,39 @@ + org 7c00h +init_foo: + jmp init_bar + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + +init_bar: + mov [b1],dl + mov [b2],edx + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + nop + ret + + absolute init_bar+7 +b1: resb 1 +b2: resd 6 + |