mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
es5503: The Mirage boot ROM spams $FF to the oscillator enable register, so handle it. [R. Belmont]
This commit is contained in:
parent
476054def1
commit
8b3560fa7d
@ -430,7 +430,7 @@ void es5503_device::write(offs_t offset, u8 data)
|
||||
case 0xe1: // oscillator enable
|
||||
// The number here is the number of oscillators to enable -1 times 2. You can never
|
||||
// have zero oscilllators enabled. So a value of 62 enables all 32 oscillators.
|
||||
oscsenabled = ((data>>1) & 0x3f) + 1;
|
||||
oscsenabled = ((data>>1) & 0x1f) + 1;
|
||||
notify_clock_changed();
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user