mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
k005289.cpp: fixed regression I caused in nemesis.cpp games (nw)
This commit is contained in:
parent
8659c397af
commit
6ccb3256e8
@ -212,13 +212,13 @@ void k005289_device::control_B_w(uint8_t data)
|
||||
}
|
||||
|
||||
|
||||
void k005289_device::ld1_w(offs_t offset)
|
||||
void k005289_device::ld1_w(offs_t offset, uint8_t data)
|
||||
{
|
||||
m_freq_latch[0] = 0xfff - offset;
|
||||
}
|
||||
|
||||
|
||||
void k005289_device::ld2_w(offs_t offset)
|
||||
void k005289_device::ld2_w(offs_t offset, uint8_t data)
|
||||
{
|
||||
m_freq_latch[1] = 0xfff - offset;
|
||||
}
|
||||
|
@ -16,8 +16,8 @@ public:
|
||||
|
||||
void control_A_w(uint8_t data);
|
||||
void control_B_w(uint8_t data);
|
||||
void ld1_w(offs_t offset);
|
||||
void ld2_w(offs_t offset);
|
||||
void ld1_w(offs_t offset, uint8_t data);
|
||||
void ld2_w(offs_t offset, uint8_t data);
|
||||
void tg1_w(uint8_t data);
|
||||
void tg2_w(uint8_t data);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user