v86/tests/nasm/idiv16-overflow.asm
2022-11-15 10:14:28 +09:00

11 lines
124 B
NASM

global _start
%include "header.inc"
mov ax, 0000h
mov dx, 8000h
mov bx, -1
idiv bx
%include "footer.inc"