summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/act53.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/act53.h')
-rw-r--r--src/devices/bus/nes/act53.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/devices/bus/nes/act53.h b/src/devices/bus/nes/act53.h
new file mode 100644
index 00000000000..c870d600102
--- /dev/null
+++ b/src/devices/bus/nes/act53.h
@@ -0,0 +1,38 @@
+// license:BSD-3-Clause
+// copyright-holders:Fabio Priuli
+#ifndef __NES_ACTION53_H
+#define __NES_ACTION53_H
+
+#include "nxrom.h"
+
+
+// ======================> nes_racermate_device
+
+class nes_action53_device : public nes_nrom_device
+{
+public:
+ // construction/destruction
+ nes_action53_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+ // device-level overrides
+ virtual void device_start();
+ virtual DECLARE_WRITE8_MEMBER(write_l);
+ virtual DECLARE_WRITE8_MEMBER(write_h);
+
+ virtual void pcb_reset();
+
+private:
+ void update_prg();
+ void update_mirr();
+ UINT8 m_sel;
+ UINT8 m_reg[4];
+};
+
+
+
+
+
+// device type definition
+extern const device_type NES_ACTION53;
+
+#endif