Datei für a2 aus a1 kopiert
This commit is contained in:
parent
8f8e86737b
commit
edbec0314d
16
a2.asm
Normal file
16
a2.asm
Normal file
@ -0,0 +1,16 @@
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user