Skip to content

Commit

Permalink
New systems marked not working
Browse files Browse the repository at this point in the history
------------------------------
Simply the Best (CZ750, v1.0) [Team Europe, Roberto Fresca]
  • Loading branch information
RobertoFresca committed Dec 24, 2023
1 parent abfb665 commit 4c9529d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/mame/mame.lst
Original file line number Diff line number Diff line change
Expand Up @@ -30528,6 +30528,7 @@ magicrdja // (c) 1998 Impera
magicle // (c) 2001 Impera
puzzleme // (c) 199? Impera
quingo // (c) 1999 Impera
simpbest // (c) 2001 Kajot

@source:misc/magicfly.cpp
7mezzo // 198? Unknown
Expand Down
21 changes: 21 additions & 0 deletions src/mame/misc/magicard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2258,6 +2258,25 @@ ROM_START( jjokeri )
ROM_END


/*
Simply the Best
CZ750, V1.00
2001, Kajot.
*/
ROM_START( simpbest )
ROM_REGION( 0x80000, "maincpu", 0 ) // 68070 Code & GFX
ROM_LOAD16_WORD_SWAP( "27c4002.ic23", 0x00000, 0x80000, CRC(ceae7862) SHA1(862baf3312c5076910d001a834661197ca45b766) )

ROM_REGION( 0x2000, "pic87c571", 0 ) // undumped
ROM_LOAD("pic87c571.bin", 0x0000, 0x2000, NO_DUMP )

ROM_REGION( 0x0100, "sereeprom", 0 ) // Serial EPROM
ROM_LOAD16_WORD_SWAP("24c04a.ic27", 0x0000, 0x0100, CRC(3189844c) SHA1(cc017f44d9db92da85c96be750ccec7ee32e5972) )
ROM_CONTINUE( 0x0000, 0x0100) // discarding 1nd half test pattern filled
ROM_END


} // anonymous namespace


Expand Down Expand Up @@ -2291,3 +2310,5 @@ GAME( 1993, kajotcrd, 0, hotslots, magicard, hotslots_state, em

GAME( 1991, lucky7x, lucky7i, magicard, lucky7i, magicard_state, empty_init, ROT0, "Impera", "Lucky 7 (Impera, V04/91a, set 2)", MACHINE_SUPPORTS_SAVE | MACHINE_NOT_WORKING )
GAMEL( 1991, jjokeri, 0, magicard, jjokeri, magicard_state, empty_init, ROT0, "Impera", "Jolly Joker? (Impera, V11/90b)", MACHINE_SUPPORTS_SAVE | MACHINE_NOT_WORKING, layout_magicard )

GAME( 2001, simpbest, 0, magicle, hotslots, hotslots_state, empty_init, ROT0, "Kajot", "Simply the Best (CZ750, v1.0)", MACHINE_SUPPORTS_SAVE | MACHINE_NOT_WORKING )

3 comments on commit 4c9529d

@f205v
Copy link
Contributor

@f205v f205v commented on 4c9529d Dec 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

line 2276: "1nd" should be "1st" or "2nd"

@mamehaze
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

discarding part of the ROM doesn't really make sense for an SEEPROM either. if the type is known, the size is known, and the way it gets addressed is known. the data is either there or it isn't.

@RobertoFresca
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep... I know. I was trying a different machine driver that has harcoded 24c02, and clipped the binary to test it. Just forgot to revert it.
Will fix this in the next commit with the machines driver split, since the hardware is clearly different.

Please sign in to comment.