summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/psx/gamebooster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/psx/gamebooster.h')
-rw-r--r--src/devices/bus/psx/gamebooster.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/devices/bus/psx/gamebooster.h b/src/devices/bus/psx/gamebooster.h
new file mode 100644
index 00000000000..a6c06844d7e
--- /dev/null
+++ b/src/devices/bus/psx/gamebooster.h
@@ -0,0 +1,49 @@
+// license:BSD-3-Clause
+// copyright-holders:David Haywood
+
+#ifndef MAME_BUS_PSX_GAMEBOOSTER_H
+#define MAME_BUS_PSX_GAMEBOOSTER_H
+
+#pragma once
+
+
+#include "parallel.h"
+#include "bus/gameboy/rom.h"
+#include "bus/gameboy/mbc.h"
+
+//**************************************************************************
+// TYPE DEFINITIONS
+//**************************************************************************
+
+// ======================> psx_gamebooster_device
+
+class psx_gamebooster_device :
+ public device_t,
+ public psx_parallel_interface
+{
+public:
+ // construction/destruction
+ psx_gamebooster_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+
+protected:
+ // device-level overrides
+ virtual void device_start() override;
+ virtual void device_reset() override;
+
+ // optional information overrides
+ virtual const tiny_rom_entry *device_rom_region() const override;
+ virtual void device_add_mconfig(machine_config &config) override;
+
+ virtual DECLARE_READ16_MEMBER(exp_r) override;
+ virtual DECLARE_WRITE16_MEMBER(exp_w) override;
+
+private:
+ required_memory_region m_rom;
+ required_device<gb_cart_slot_device> m_cartslot;
+};
+
+
+// device type definition
+DECLARE_DEVICE_TYPE(PSX_GAMEBOOSTER, psx_gamebooster_device)
+
+#endif // MAME_BUS_PSX_GAMEBOOSTER_H