diff options
author | Michael Pavone <pavone@retrodev.com> | 2014-12-30 19:11:34 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2014-12-30 19:11:34 -0800 |
commit | fd85c8d7a74d44f169db4a51a600295042682ee8 (patch) | |
tree | d8052a699c4a576d5023aee7537ff0f7fee50dd5 /ym2612.c | |
parent | c61ca95add7b82aadef09aea8b4c48774e079069 (diff) | |
parent | 3c8d04a6b51184d9856cebd2e445791e451cb56a (diff) |
Merge
Diffstat (limited to 'ym2612.c')
-rw-r--r-- | ym2612.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -521,6 +521,7 @@ void ym_address_write_part1(ym2612_context * context, uint8_t address) context->selected_part = 0; context->write_cycle = context->current_cycle; context->busy_cycles = BUSY_CYCLES_ADDRESS; + context->status |= 0x80; } void ym_address_write_part2(ym2612_context * context, uint8_t address) @@ -530,6 +531,7 @@ void ym_address_write_part2(ym2612_context * context, uint8_t address) context->selected_part = 1; context->write_cycle = context->current_cycle; context->busy_cycles = BUSY_CYCLES_ADDRESS; + context->status |= 0x80; } uint8_t fnum_to_keycode[] = { |