From e87f9409c6a74adf95c1ea3a5433b95a4974cb35 Mon Sep 17 00:00:00 2001 From: joethei Date: Thu, 25 Oct 2018 07:32:24 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9Ea1.asm=E2=80=9C=20l=C3=B6schen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- a1.asm | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 a1.asm diff --git a/a1.asm b/a1.asm deleted file mode 100644 index 0a1399e..0000000 --- a/a1.asm +++ /dev/null @@ -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