summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/exp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pet/exp.h')
-rw-r--r--src/devices/bus/pet/exp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/pet/exp.h b/src/devices/bus/pet/exp.h
index 14fe9296a8d..b8b53701a79 100644
--- a/src/devices/bus/pet/exp.h
+++ b/src/devices/bus/pet/exp.h
@@ -48,8 +48,8 @@ public:
int norom_r(offs_t offset, int sel);
uint8_t read(offs_t offset, uint8_t data, int &sel);
void write(offs_t offset, uint8_t data, int &sel);
- DECLARE_READ_LINE_MEMBER( diag_r );
- DECLARE_WRITE_LINE_MEMBER( irq_w );
+ int diag_r();
+ void irq_w(int state);
// cartridge interface
uint8_t dma_bd_r(offs_t offset);
@@ -103,8 +103,8 @@ protected:
// runtime
virtual int pet_norom_r(offs_t offset, int sel) { return 1; }
- virtual uint8_t pet_bd_r(offs_t offset, uint8_t data, int &sel) { return data; };
- virtual void pet_bd_w(offs_t offset, uint8_t data, int &sel) { };
+ virtual uint8_t pet_bd_r(offs_t offset, uint8_t data, int &sel) { return data; }
+ virtual void pet_bd_w(offs_t offset, uint8_t data, int &sel) { }
virtual int pet_diag_r() { return 1; }
virtual void pet_irq_w(int state) { }