mirror of
https://github.com/holub/mame
synced 2025-07-06 18:39:28 +03:00
pps41: remove obsolete function
This commit is contained in:
parent
e21017d3bb
commit
410b42ee77
@ -69,7 +69,6 @@ protected:
|
||||
void pop_pc();
|
||||
void push_pc();
|
||||
void op_illegal();
|
||||
void op_todo();
|
||||
|
||||
virtual bool op_is_tr(u8 op) override { return (op & 0xf0) == 0x30; };
|
||||
virtual bool op_is_eob(u8 op) { return (op & 0xfc) == 0x1c; };
|
||||
|
@ -38,11 +38,6 @@ void mm76_device::op_illegal()
|
||||
logerror("unknown opcode $%02X at $%03X\n", m_op, m_prev_pc);
|
||||
}
|
||||
|
||||
void mm76_device::op_todo()
|
||||
{
|
||||
logerror("unimplemented opcode $%02X at $%03X\n", m_op, m_prev_pc);
|
||||
}
|
||||
|
||||
|
||||
// opcodes
|
||||
|
||||
|
@ -42,8 +42,8 @@ public:
|
||||
auto write_sdo() { return m_write_sdo.bind(); }
|
||||
auto write_ssc() { return m_write_ssc.bind(); }
|
||||
|
||||
u16 d_r() { return m_d_output; }
|
||||
u8 r_r() { return m_r_output; }
|
||||
u16 d_output_r() { return m_d_output; }
|
||||
u8 r_output_r() { return m_r_output; }
|
||||
int sdo_r() { return BIT(m_s, 3); }
|
||||
void ssc_w(int state);
|
||||
|
||||
|
@ -22,8 +22,8 @@
|
||||
// internal artwork
|
||||
#include "ftri1.lh"
|
||||
#include "mastmind.lh"
|
||||
#include "mwcfootb.lh"
|
||||
#include "memoquiz.lh"
|
||||
#include "mwcfootb.lh"
|
||||
#include "rdqa.lh"
|
||||
#include "scrabsen.lh"
|
||||
#include "smastmind.lh"
|
||||
@ -564,7 +564,7 @@ void mwcfootb_state::main_write_d(u16 data)
|
||||
u16 mwcfootb_state::main_read_d()
|
||||
{
|
||||
// DIO9: subcpu DIO9
|
||||
return m_subcpu->d_r() & 0x200;
|
||||
return m_subcpu->d_output_r() & 0x200;
|
||||
}
|
||||
|
||||
void mwcfootb_state::main_write_r(u8 data)
|
||||
|
Loading…
Reference in New Issue
Block a user