summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99/peb/pcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99/peb/pcode.h')
-rw-r--r--src/devices/bus/ti99/peb/pcode.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/ti99/peb/pcode.h b/src/devices/bus/ti99/peb/pcode.h
index 7462c559461..2092046b071 100644
--- a/src/devices/bus/ti99/peb/pcode.h
+++ b/src/devices/bus/ti99/peb/pcode.h
@@ -21,7 +21,7 @@
#include "machine/74259.h"
#include "machine/tmc0430.h"
-namespace bus { namespace ti99 { namespace peb {
+namespace bus::ti99::peb {
class ti_pcode_card_device : public device_t, public device_ti99_peribox_card_interface
{
@@ -33,7 +33,7 @@ public:
void cruwrite(offs_t offset, uint8_t data) override;
void setaddress_dbin(offs_t offset, int state) override;
- DECLARE_WRITE_LINE_MEMBER(clock_in) override;
+ void clock_in(int state) override;
DECLARE_INPUT_CHANGED_MEMBER( switch_changed );
@@ -46,12 +46,12 @@ protected:
virtual ioport_constructor device_input_ports() const override;
private:
- DECLARE_WRITE_LINE_MEMBER(ready_line);
+ void ready_line(int state);
- DECLARE_WRITE_LINE_MEMBER(pcpage_w);
- DECLARE_WRITE_LINE_MEMBER(ekrpg_w);
+ void pcpage_w(int state);
+ void ekrpg_w(int state);
- void debugger_read(uint16_t addr, uint8_t& value);
+ void debugger_read(offs_t addr, uint8_t& value);
required_device_array<tmc0430_device, 8> m_groms;
@@ -73,7 +73,7 @@ private:
int m_address;
};
-} } } // end namespace bus::ti99::peb
+} // end namespace bus::ti99::peb
DECLARE_DEVICE_TYPE_NS(TI99_P_CODE, bus::ti99::peb, ti_pcode_card_device)