aboutsummaryrefslogtreecommitdiff
path: root/src-z80/core/vars.z80
diff options
context:
space:
mode:
authorJavier Degirolmo2013-03-20 22:22:52 -0300
committerJavier Degirolmo2013-03-20 22:22:52 -0300
commite7617bcf94af9e31655f838bc343f0fea1e80eaa (patch)
tree70dc89a7597944ce0bd0812a0e3640f39ab70a47 /src-z80/core/vars.z80
parentda7654b94830523294ecd5fb071bc0eaa06a5087 (diff)
PCM is now buffered to improve performance somewhat. Version bumped up to 1.1.
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
;****************************************************************************