This commit is contained in:
Johannes Theiner 2018-10-25 11:27:03 +02:00
commit 7a6ca78e2d
3 changed files with 0 additions and 39 deletions

7
a0.asm
View File

@ -1,7 +0,0 @@
org 100h
cpu 8086
START: mov al, 8
mov bl, 20
add al, bl
jmp START

16
a1.asm
View File

@ -1,16 +0,0 @@
org 100h
cpu 8086
jmp START
BYTE1 db 32
db 'Hardwarenahes Programmieren'
times 4 db 0, '1'
dw 1, 2, 3, 4, 1234
dd 1234h
START: mov bx, BYTE1
WDH: mv al, [bx]
out 0, al
inc bx
jmp WDH

16
a2.asm
View File

@ -1,16 +0,0 @@
org 100h
cpu 8086
jmp START
BYTE1 db 32
db 'Hardwarenahes Programmieren'
times 4 db 0, '1'
dw 1, 2, 3, 4, 1234
dd 1234h
START: mov bx, BYTE1
WDH: mv al, [bx]
out 0, al
inc bx
jmp WDH