summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/mmc3_clones.h
diff options
context:
space:
mode:
author 0kmg <9137159+0kmg@users.noreply.github.com>2021-10-09 16:30:47 -0800
committer GitHub <noreply@github.com>2021-10-09 20:30:47 -0400
commitc7d04d404a3dc5f2035deabc7daf188f14800f08 (patch)
treeea8f6b1aad65b6e903086aaedca90f18c53f7cfb /src/devices/bus/nes/mmc3_clones.h
parent3961612bf3fdadb53cdda85b6d283b633350ef1b (diff)
bus/nes: Added support for a couple Korean educational titles. (#8675)
- Also replaced the underdumped ROMs for brillco2, which is now fully working. New working software list additions (nes.xml) ----------------------------------- Yeongjaekeom Cocoma Pack 1 (Korea) [MLX]
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 61cfa0d568e..d08368ea43f 100644
--- a/src/devices/bus/nes/mmc3_clones.h
+++ b/src/devices/bus/nes/mmc3_clones.h
@@ -360,6 +360,20 @@ protected:
};
+// ======================> nes_cocoma_device
+
+class nes_cocoma_device : public nes_txrom_device
+{
+public:
+ // construction/destruction
+ nes_cocoma_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+
+ virtual void write_h(offs_t offset, u8 data) override;
+
+ virtual void pcb_reset() override;
+};
+
+
// ======================> nes_gouder_device
class nes_gouder_device : public nes_txrom_device
@@ -1067,6 +1081,7 @@ DECLARE_DEVICE_TYPE(NES_TXC_TW, nes_txc_tw_device)
DECLARE_DEVICE_TYPE(NES_KOF97, nes_kof97_device)
DECLARE_DEVICE_TYPE(NES_KOF96, nes_kof96_device)
DECLARE_DEVICE_TYPE(NES_SF3, nes_sf3_device)
+DECLARE_DEVICE_TYPE(NES_COCOMA, nes_cocoma_device)
DECLARE_DEVICE_TYPE(NES_GOUDER, nes_gouder_device)
DECLARE_DEVICE_TYPE(NES_SA9602B, nes_sa9602b_device)
DECLARE_DEVICE_TYPE(NES_SACHEN_SHERO, nes_sachen_shero_device)