diff options
| author | Sik | 2019-03-31 19:27:51 -0300 |
|---|---|---|
| committer | Sik | 2019-03-31 19:27:51 -0300 |
| commit | e4da3571aa25e5798e1d96fe3df600bcd806403d (patch) | |
| tree | e93b021ded2635ede409a7b0b86aed604f1e2e1f /src-z80/player/pcm.z80 | |
| parent | 46ce4f706ea47d16db70018baedd5eb6c691ef95 (diff) | |
Echo 1.64, random bugfixes
Diffstat (limited to 'src-z80/player/pcm.z80')
| -rw-r--r-- | src-z80/player/pcm.z80 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src-z80/player/pcm.z80 b/src-z80/player/pcm.z80 index 2b7bcc4..688683a 100644 --- a/src-z80/player/pcm.z80 +++ b/src-z80/player/pcm.z80 @@ -9,9 +9,10 @@ UpdatePCM: exx ; Switch to PCM registers -.doagain: +UpdatePCM_Again: ld (ix+0), $27 ; Acknowledge timer ld (ix+1), $1F +UpdatePCM_Tick: ;push hl ;ld hl, $1F27 ;ld ($4000), hl @@ -129,7 +130,7 @@ UpdatePCM: .nobankchg: ld l, RAM_PCMBuffer&$FF ; Go back to the beginning of the buffer - jp .doagain ; We took so long we should play the next + jp UpdatePCM_Again ; We took so long we should play the next ; sample already ._.' ;**************************************************************************** |
