Hardwarenahe_Programmierung/src/a0.1.add.asm

8 lines
73 B
NASM
Raw Normal View History

2018-10-18 12:38:02 +02:00
org 100h
cpu 8086
START: mov al, 8
mov bl, 20
add al, bl
jmp START