diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:00:33 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:00:33 +0000 |
commit | 1cd0e2d5bf50b2cc482cad7beb8f7dee6a81d57b (patch) | |
tree | 53de3660be58d806d9de78394b44e95b9e80a55c /test/bintest.asm | |
parent | af535c16cf3f9f628384ec834e3aa325709cb37b (diff) | |
download | nasm-1cd0e2d5bf50b2cc482cad7beb8f7dee6a81d57b.tar.gz nasm-1cd0e2d5bf50b2cc482cad7beb8f7dee6a81d57b.tar.bz2 nasm-1cd0e2d5bf50b2cc482cad7beb8f7dee6a81d57b.zip |
NASM 0.98.08
Diffstat (limited to 'test/bintest.asm')
-rw-r--r-- | test/bintest.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bintest.asm b/test/bintest.asm index 6799b38..94d2bf7 100644 --- a/test/bintest.asm +++ b/test/bintest.asm @@ -26,7 +26,7 @@ jmp start ; [6] -end mov ax,0x4c00 ; [1] +endX mov ax,0x4c00 ; [1] int 0x21 start mov byte [bss_sym],',' ; [1] [8] @@ -49,7 +49,7 @@ start mov byte [bss_sym],',' ; [1] [8] datasym db 'hello world', 13, 10, '$' ; [2] bssptr dw bss_sym ; [2] [11] dataptr dw datasym+5 ; [2] [10] -textptr dw end ; [2] [9] +textptr dw endX ; [2] [9] SECTION .bss |