From e7617bcf94af9e31655f838bc343f0fea1e80eaa Mon Sep 17 00:00:00 2001 From: Javier Degirolmo Date: Wed, 20 Mar 2013 22:22:52 -0300 Subject: PCM is now buffered to improve performance somewhat. Version bumped up to 1.1. --- src-z80/core/vars.z80 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src-z80/core/vars.z80') 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 ;**************************************************************************** -- cgit v1.2.3