8 lines
73 B
NASM
8 lines
73 B
NASM
org 100h
|
|
cpu 8086
|
|
|
|
START: mov al, 8
|
|
mov bl, 20
|
|
sub al, bl
|
|
jmp START
|