aboutsummaryrefslogtreecommitdiff
path: root/src-z80/core/vars.z80
diff options
context:
space:
mode:
Diffstat (limited to 'src-z80/core/vars.z80')
-rw-r--r--src-z80/core/vars.z805
1 files changed, 3 insertions, 2 deletions
diff --git a/src-z80/core/vars.z80 b/src-z80/core/vars.z80
index c1dc8b5..9dcac4b 100644
--- a/src-z80/core/vars.z80
+++ b/src-z80/core/vars.z80
@@ -45,6 +45,9 @@ RAM_Scratch: ds 32 ; Scratch bytes, may be useful when
; buffering to speed up to avoid bank
; switching conflicts
+ ds $F0-($&$FF), $FF
+RAM_PCMBuffer: ds 16 ; PCM buffer
+
;****************************************************************************
; Pointer list starts being stored from here
; $300 (768) bytes are needed to store the pointer list
@@ -55,8 +58,6 @@ RAM_Scratch: ds 32 ; Scratch bytes, may be useful when
; RAM_PointerList[$200+n] = bank
;****************************************************************************
- ds $100-($&$FF), $FF
-
RAM_PointerList: equ $1C00
;****************************************************************************