From e83ed15fa15c05d3dfbeb90a832718606d34db27 Mon Sep 17 00:00:00 2001
From: k26-chow <kin3.chow@live.uwe.ac.uk>
Date: Thu, 5 Dec 2024 16:13:03 +0000
Subject: [PATCH] Delete asm_io.inc

---
 asm_io.inc | 30 ------------------------------
 1 file changed, 30 deletions(-)
 delete mode 100644 asm_io.inc

diff --git a/asm_io.inc b/asm_io.inc
deleted file mode 100644
index 9163be3..0000000
--- a/asm_io.inc
+++ /dev/null
@@ -1,30 +0,0 @@
-	extern  read_int, print_int, print_string
-	extern	read_char, print_char, print_nl
-	extern  sub_dump_regs, sub_dump_mem, sub_dump_math, sub_dump_stack
-
-%macro 	dump_regs 1
-	push	  dword %1
-	call	  sub_dump_regs
-%endmacro
-
-
-;
-; usage: dump_mem label, start-address, # paragraphs
-%macro  dump_mem 3
-	push	 dword %1
-	push	 dword %2
-	push	 dword %3
-	call	 sub_dump_mem
-%endmacro
-
-%macro	dump_math 1
-	push	 dword %1
-	call	 sub_dump_math
-%endmacro
-
-%macro  dump_stack 3
-	push	 dword %3
-        push     dword %2
-	push	 dword %1
-        call     sub_dump_stack
-%endmacro
\ No newline at end of file
-- 
GitLab