mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
hd6305: update header file after prev commit
This commit is contained in:
parent
2255a1bfab
commit
9fdfea014e
@ -7,7 +7,6 @@ Hitachi HD6305 series
|
||||
TODO:
|
||||
- HD6305xx has a 14-bit address space, not 13 (memory_access in m6805.h)
|
||||
- add unimplemented opcodes: STOP, WAIT, DAA, and HD63705Z0 also has MUL
|
||||
- add HD6305Y2 peripherals (nothing to test it with?)
|
||||
- add HD63705Z0 peripherals
|
||||
|
||||
*/
|
||||
|
@ -161,6 +161,14 @@ public:
|
||||
// construction/destruction
|
||||
hd6305y2_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
|
||||
|
||||
auto read_porta() { return m_read_port [0].bind(); }
|
||||
auto write_porta() { return m_write_port[0].bind(); }
|
||||
auto read_portb() { return m_read_port [1].bind(); }
|
||||
auto write_portb() { return m_write_port[1].bind(); }
|
||||
auto read_portc() { return m_read_port [2].bind(); }
|
||||
auto write_portc() { return m_write_port[2].bind(); }
|
||||
auto read_portd() { return m_read_port [3].bind(); }
|
||||
|
||||
private:
|
||||
void internal_map(address_map &map) ATTR_COLD;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user