summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/mmc3_clones.h
diff options
context:
space:
mode:
author 0kmg <9137159+0kmg@users.noreply.github.com>2021-08-08 09:30:27 -0800
committer GitHub <noreply@github.com>2021-08-09 03:30:27 +1000
commit0c13c54fbc3dd7d8f0dffd10ee8dff81f2b2a37b (patch)
treebcb8842c4497069e80010b423f143c43e93e9e43 /src/devices/bus/nes/mmc3_clones.h
parent5f1b75a3a562c229bec3b6108cbd41affa8f5a0e (diff)
bus/nes: Added support for mc_150um multi-game cartridge. (#8406)
Software list items promoted to working (nes.xml) --------------------------------------- 150 in 1 Unchained Melody (Fight 150 Ver. Love)
Diffstat (limited to 'src/devices/bus/nes/mmc3_clones.h')
-rw-r--r--src/devices/bus/nes/mmc3_clones.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/devices/bus/nes/mmc3_clones.h b/src/devices/bus/nes/mmc3_clones.h
index d1a22b72bc8..c607269732a 100644
--- a/src/devices/bus/nes/mmc3_clones.h
+++ b/src/devices/bus/nes/mmc3_clones.h
@@ -598,6 +598,21 @@ private:
};
+// ======================> nes_bmc_f15_device
+
+class nes_bmc_f15_device : public nes_txrom_device
+{
+public:
+ // construction/destruction
+ nes_bmc_f15_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+
+ virtual void write_m(offs_t offset, u8 data) override;
+ virtual void prg_cb(int start, int bank) override;
+
+ virtual void pcb_reset() override;
+};
+
+
// ======================> nes_bmc_gold7in1_device
class nes_bmc_gold7in1_device : public nes_txrom_device
@@ -792,6 +807,7 @@ DECLARE_DEVICE_TYPE(NES_BMC_SBIG7, nes_bmc_sbig7_device)
DECLARE_DEVICE_TYPE(NES_BMC_HIK8, nes_bmc_hik8_device)
DECLARE_DEVICE_TYPE(NES_BMC_HIK4, nes_bmc_hik4_device)
DECLARE_DEVICE_TYPE(NES_BMC_MARIO7IN1, nes_bmc_mario7in1_device)
+DECLARE_DEVICE_TYPE(NES_BMC_F15, nes_bmc_f15_device)
DECLARE_DEVICE_TYPE(NES_BMC_GOLD7IN1, nes_bmc_gold7in1_device)
DECLARE_DEVICE_TYPE(NES_BMC_GC6IN1, nes_bmc_gc6in1_device)
DECLARE_DEVICE_TYPE(NES_BMC_K3006, nes_bmc_k3006_device)