From d4216d793ab0186f1736ac320cfeaef1f5751d11 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 13 Mar 2025 17:50:58 +0700 Subject: [PATCH] Listing 43/44 asm files --- asm_files/list-0043.asm | 27 +++++++++++++++++++++++++++ asm_files/list-0044.asm | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 asm_files/list-0043.asm create mode 100644 asm_files/list-0044.asm diff --git a/asm_files/list-0043.asm b/asm_files/list-0043.asm new file mode 100644 index 0000000..475afaf --- /dev/null +++ b/asm_files/list-0043.asm @@ -0,0 +1,27 @@ +; ======================================================================== +; +; (C) Copyright 2023 by Molly Rocket, Inc., All Rights Reserved. +; +; This software is provided 'as-is', without any express or implied +; warranty. In no event will the authors be held liable for any damages +; arising from the use of this software. +; +; Please see https://computerenhance.com for further information +; +; ======================================================================== + +; ======================================================================== +; LISTING 43 +; ======================================================================== + +bits 16 + +mov ax, 1 +mov bx, 2 +mov cx, 3 +mov dx, 4 + +mov sp, 5 +mov bp, 6 +mov si, 7 +mov di, 8 diff --git a/asm_files/list-0044.asm b/asm_files/list-0044.asm new file mode 100644 index 0000000..58988fe --- /dev/null +++ b/asm_files/list-0044.asm @@ -0,0 +1,32 @@ +; ======================================================================== +; +; (C) Copyright 2023 by Molly Rocket, Inc., All Rights Reserved. +; +; This software is provided 'as-is', without any express or implied +; warranty. In no event will the authors be held liable for any damages +; arising from the use of this software. +; +; Please see https://computerenhance.com for further information +; +; ======================================================================== + +; ======================================================================== +; LISTING 44 +; ======================================================================== + +bits 16 + +mov ax, 1 +mov bx, 2 +mov cx, 3 +mov dx, 4 + +mov sp, ax +mov bp, bx +mov si, cx +mov di, dx + +mov dx, sp +mov cx, bp +mov bx, si +mov ax, di