From 052fae637dc410cd8d6b8755e471492d8ff62550 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sat, 5 Oct 2024 20:30:21 +0200 Subject: [PATCH] Added tmp and itmp storage --- src/wram.s | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/wram.s b/src/wram.s index cb3d596..8ca371e 100644 --- a/src/wram.s +++ b/src/wram.s @@ -83,3 +83,10 @@ curr_room: .adv 2 ui_flags: .adv 1 draw_flags: .adv 1 + + ; tmp can be used by routines as + ; they see fit +tmp: .adv 16 + ; itmp is the same as tmp but + ; for use during an interrupt +itmp: .adv 16 -- 2.30.2