From fc6a5eaac6cee7b899e04a95d60fabca86ebf85c Mon Sep 17 00:00:00 2001 From: rhjr Date: Mon, 25 Nov 2024 20:27:38 +0100 Subject: [PATCH] Added: Molly rocket reference material in data/. --- data/listing_0037_single_register_mov.asm | 19 +++++++++++++++ data/listing_0038_many_register_mov.asm | 29 +++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 data/listing_0037_single_register_mov.asm create mode 100644 data/listing_0038_many_register_mov.asm diff --git a/data/listing_0037_single_register_mov.asm b/data/listing_0037_single_register_mov.asm new file mode 100644 index 0000000..1b58e05 --- /dev/null +++ b/data/listing_0037_single_register_mov.asm @@ -0,0 +1,19 @@ +; ======================================================================== +; +; (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 37 +; ======================================================================== + +bits 16 + +mov cx, bx diff --git a/data/listing_0038_many_register_mov.asm b/data/listing_0038_many_register_mov.asm new file mode 100644 index 0000000..c157b91 --- /dev/null +++ b/data/listing_0038_many_register_mov.asm @@ -0,0 +1,29 @@ +; ======================================================================== +; +; (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 38 +; ======================================================================== + +bits 16 + +mov cx, bx +mov ch, ah +mov dx, bx +mov si, bx +mov bx, di +mov al, cl +mov ch, ch +mov bx, ax +mov bx, si +mov sp, di +mov bp, ax