diff options
author | Mike Pavone <pavone@retrodev.com> | 2014-02-13 00:55:01 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2014-02-13 00:55:01 -0800 |
commit | 1eebc33bf12ccec34aba87c9b6d9f05013fb037f (patch) | |
tree | 32ea3ad88d8aa31a1f7d3d497ab13f8e8f60985f /ym2612.h | |
parent | 3ef25e453e0c72b7dd19046f27977345f5dc0d2f (diff) |
Better emulation of the YM-2612 busy flag
Diffstat (limited to 'ym2612.h')
-rw-r--r-- | ym2612.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -67,7 +67,9 @@ typedef struct { uint32_t sample_rate; uint32_t sample_limit; uint32_t current_cycle; + //TODO: Condense the next two fields into one uint32_t write_cycle; + uint32_t busy_cycles; ym_operator operators[NUM_OPERATORS]; ym_channel channels[NUM_CHANNELS]; uint16_t timer_a; |