From 73a80de4228a498b483c8e10ab317920d978d507 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Thu, 20 Jan 2022 23:22:42 -0700 Subject: Moved globals to file --- src/globals.S | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/globals.S (limited to 'src/globals.S') diff --git a/src/globals.S b/src/globals.S new file mode 100644 index 0000000..68101d7 --- /dev/null +++ b/src/globals.S @@ -0,0 +1,14 @@ +.section ".bss" +.globl cntfrq +cntfrq: + .word 0 +.globl cmdidx +cmdidx: + .word 0 +.global cmd +cmd: + .space 2049 + +.section ".bss.heap" +mheap: + .space 0x100000 -- cgit v1.2.1