mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-15 09:09:58 +08:00
498d36038a
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
12 lines
239 B
NASM
12 lines
239 B
NASM
; This file was known to miscompile with the 16-bit NASM built
|
|
; under Borland C++ 3.1, so keep it around for testing...
|
|
;
|
|
; The proper output looks like:
|
|
;
|
|
; 00000000 A10300
|
|
; 00000003 EA0000FFFF
|
|
;
|
|
org 0100h
|
|
mov ax,[3]
|
|
jmp 0FFFFh:0000
|