hd6305: update header file after prev commit

This commit is contained in:
hap 2024-12-14 10:42:07 +01:00
parent 2255a1bfab
commit 9fdfea014e
2 changed files with 8 additions and 1 deletions

View File

@ -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
*/

View File

@ -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;
};