aboutsummaryrefslogtreecommitdiff
path: root/src-z80
diff options
context:
space:
mode:
authorJavier Degirolmo2012-02-03 23:17:13 -0300
committerJavier Degirolmo2012-02-03 23:17:13 -0300
commitefd1677ed70a4e0acbae05ae3bc0d9b14b8c1405 (patch)
tree8ebcfedb339a352e11b27ba72384953650c48340 /src-z80
parentc6637d1f7c7cc20d50d79d0d66c13d03f4bbb7d6 (diff)
Optimized PCM pooling
Diffstat (limited to 'src-z80')
-rw-r--r--src-z80/core/main.z804
1 files changed, 2 insertions, 2 deletions
diff --git a/src-z80/core/main.z80 b/src-z80/core/main.z80
index 5d9b7f6..491860a 100644
--- a/src-z80/core/main.z80
+++ b/src-z80/core/main.z80
@@ -100,8 +100,8 @@ EntryPoint:
PollPCM: macro
ld a, ($4000)
- bit 0, a
- call nz, UpdatePCM
+ rrca
+ call c, UpdatePCM
endm
;****************************************************************************