From edbec0314d5e52567f0dd37b40ae01b6c690accb Mon Sep 17 00:00:00 2001 From: Johannes Theiner Date: Wed, 17 Oct 2018 21:00:40 +0200 Subject: [PATCH] =?UTF-8?q?Datei=20f=C3=BCr=20a2=20aus=20a1=20kopiert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a2.asm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 a2.asm diff --git a/a2.asm b/a2.asm new file mode 100644 index 0000000..0a1399e --- /dev/null +++ b/a2.asm @@ -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