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-14 20:45:28 -0800
committer 0kmg <9137159+0kmg@users.noreply.github.com>2021-08-15 11:49:44 -0800
commit80cca64ddc7047cfd8bb4c2919f28ae5c8152503 (patch)
treeec1431798f6d8b65f9bbac8a873253c04a4d9b9b /src/devices/bus/nes/mmc3_clones.h
parent6a1ba6ed10b7351386b1f7ea903df5ff23b26d62 (diff)
bus/nes: Added support for 4 multicarts on 2 board types.
New working software list additions (nes.xml) ----------------------------------- 1994 Super HiK 3 in 1 (JY-007) [famiac, NewRisingSun] 1995 Super 8-in-1 (JY-050) [Consolethinks, NewRisingSun] Super 8-in-1 Gold Card Series (JY-085) [Consolethinks, NewRisingSun] Super 8-in-1 Gold Card Series (JY-086) [Consolethinks, NewRisingSun]
Diffstat (limited to 'src/devices/bus/nes/mmc3_clones.h')
-rw-r--r--src/devices/bus/nes/mmc3_clones.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/devices/bus/nes/mmc3_clones.h b/src/devices/bus/nes/mmc3_clones.h
index 84ca31ccb4e..65ae5ede1ec 100644
--- a/src/devices/bus/nes/mmc3_clones.h
+++ b/src/devices/bus/nes/mmc3_clones.h
@@ -752,6 +752,20 @@ private:
};
+// ======================> nes_bmc_830832c_device
+
+class nes_bmc_830832c_device : public nes_txrom_device
+{
+public:
+ // construction/destruction
+ nes_bmc_830832c_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 pcb_reset() override;
+};
+
+
// ======================> nes_bmc_841101c_device
class nes_bmc_841101c_device : public nes_txrom_device
@@ -849,6 +863,7 @@ DECLARE_DEVICE_TYPE(NES_BMC_GC6IN1, nes_bmc_gc6in1_device)
DECLARE_DEVICE_TYPE(NES_BMC_K3006, nes_bmc_k3006_device)
DECLARE_DEVICE_TYPE(NES_BMC_411120C, nes_bmc_411120c_device)
DECLARE_DEVICE_TYPE(NES_BMC_830118C, nes_bmc_830118c_device)
+DECLARE_DEVICE_TYPE(NES_BMC_830832C, nes_bmc_830832c_device)
DECLARE_DEVICE_TYPE(NES_BMC_841101C, nes_bmc_841101c_device)
DECLARE_DEVICE_TYPE(NES_PJOY84, nes_pjoy84_device)
DECLARE_DEVICE_TYPE(NES_COOLBOY, nes_coolboy_device)