diff options
author | 2023-01-28 09:33:23 +0100 | |
---|---|---|
committer | 2023-01-28 09:33:23 +0100 | |
commit | 01fcb2e0decf670a4cdee3d37b6f7ebde9b8f02b (patch) | |
tree | 8d1a438a6ad1528df3bc4e5456723cd1f59e7a0f /src | |
parent | 2498f2b7cfb77f6a6d8d08f07075b7fa1c3ab63b (diff) |
New systems marked not working
------------------------------
Primus Expert mit Stimme [Team Europe]
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/mame.lst | 1 | ||||
-rw-r--r-- | src/mame/vtech/pc2000.cpp | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 6423e5ce827..7cfb459b94d 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -44860,6 +44860,7 @@ ordisava // 1988 Ordisavant (France) pc1000 // 1988 PreComputer 1000 pc2000 // 1993 PreComputer 2000 pc2000s // 1993 PreComputer 2000 (Spain) +primusex // 198? Yeno Primus Expert mit Stimme (Germany) @source:vtech/pc4.cpp pc4 // diff --git a/src/mame/vtech/pc2000.cpp b/src/mame/vtech/pc2000.cpp index 8000aa9abe8..678425ec87d 100644 --- a/src/mame/vtech/pc2000.cpp +++ b/src/mame/vtech/pc2000.cpp @@ -47,6 +47,8 @@ Other known international versions: #include "gl3000s.lh" +namespace { + class pc2000_state : public driver_device { public: @@ -1128,12 +1130,20 @@ ROM_START( lexipcm ) ROM_LOAD( "epoxy.u3", 0x00000, 0x100000, CRC(0a410790) SHA1(be04d5f74208a2f3b200daed75e04e966f64b545) ) ROM_END +ROM_START( primusex ) // Z84C0006PEC + 2x CP82C55A + V05040INS (?) with 80x48 pixel LCD + ROM_REGION( 0x80000, "bios", 0 ) + ROM_LOAD( "mtrom.u11", 0x000000, 0x080000, CRC(b35f8e80) SHA1(aa79175f0e590201b62ba1c19492833064e69f71)) +ROM_END + +} // anonymous expert + /* Driver */ // YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS COMP( 1988, pc1000, 0, 0, pc1000, pc1000, pc1000_state, empty_init, "Video Technology", "PreComputer 1000", MACHINE_NOT_WORKING ) COMP( 1988, misterx, 0, 0, misterx, pc1000, pc1000_state, empty_init, "Video Technology / Yeno", "MisterX", MACHINE_NOT_WORKING ) +COMP( 198?, primusex, 0, 0, misterx, pc1000, pc1000_state, empty_init, "Yeno", "Primus Expert mit Stimme", MACHINE_NOT_WORKING ) COMP( 1988, ordisava, 0, 0, pc1000, pc1000, pc1000_state, empty_init, "Video Technology", "Ordisavant (France)", MACHINE_NOT_WORKING ) COMP( 1993, pc2000, 0, 0, pc2000, pc2000, pc2000_state, empty_init, "Video Technology", "PreComputer 2000", MACHINE_NOT_WORKING ) COMP( 1993, pc2000s, pc2000, 0, pc2000eur, pc2000, pc2000_state, empty_init, "Video Technology", "PreComputer 2000 (Spain)", MACHINE_NOT_WORKING ) |