mirror of
https://github.com/holub/mame
synced 2025-07-03 09:06:08 +03:00
b6100: don't write to speaker on tkbs
This commit is contained in:
parent
356c809820
commit
b190d8a2a8
@ -97,6 +97,12 @@ bool b6100_cpu_device::op_is_lb(u8 op)
|
|||||||
// changed opcodes (no need for separate file)
|
// changed opcodes (no need for separate file)
|
||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
|
|
||||||
|
void b6100_cpu_device::op_tkbs()
|
||||||
|
{
|
||||||
|
// TKBS: load segments (no TKB step)
|
||||||
|
seg_w(m_seg | decode_digit(ram_r()));
|
||||||
|
}
|
||||||
|
|
||||||
void b6100_cpu_device::op_read()
|
void b6100_cpu_device::op_read()
|
||||||
{
|
{
|
||||||
// READ: add KB to A, skip next on no overflow
|
// READ: add KB to A, skip next on no overflow
|
||||||
|
@ -63,6 +63,7 @@ protected:
|
|||||||
void data_48x4(address_map &map);
|
void data_48x4(address_map &map);
|
||||||
|
|
||||||
// opcode handlers
|
// opcode handlers
|
||||||
|
virtual void op_tkbs() override;
|
||||||
virtual void op_read() override;
|
virtual void op_read() override;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user