diff options
| author | Javier Degirolmo | 2012-02-03 23:17:13 -0300 |
|---|---|---|
| committer | Javier Degirolmo | 2012-02-03 23:17:13 -0300 |
| commit | efd1677ed70a4e0acbae05ae3bc0d9b14b8c1405 (patch) | |
| tree | 8ebcfedb339a352e11b27ba72384953650c48340 /src-z80 | |
| parent | c6637d1f7c7cc20d50d79d0d66c13d03f4bbb7d6 (diff) | |
Optimized PCM pooling
Diffstat (limited to 'src-z80')
| -rw-r--r-- | src-z80/core/main.z80 | 4 |
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 ;**************************************************************************** |
