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

10 lines
106 B
NASM

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