Previous 199869 Revisions Next

r33319 Monday 10th November, 2014 at 16:38:44 UTC by hap
there were some typos in stopthie.bin (game still goes in an infinite loop tho)
[src/mess/drivers]stopthie.c

trunk/src/mess/drivers/stopthie.c
r241830r241831
2828
2929READ8_MEMBER(stopthie_state::stopthie_read_k)
3030{
31   UINT8 data = 0xFF;
31   UINT8 data = 0;
3232
3333   if (LOG)
3434      logerror( "stopthie_read_k\n" );
r241830r241831
5454static const UINT16 stopthie_output_pla[0x20] =
5555{
5656   /* O output PLA configuration currently unknown */
57   0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00,
58   0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00,
59   0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00,
60   0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00, 0xFF00,
57   0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
58   0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
59   0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
60   0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f
6161};
6262
6363
6464static MACHINE_CONFIG_START( stopthie, stopthie_state )
65   MCFG_CPU_ADD( "maincpu", TMS0980, 5000000 ) /* Clock is wrong */
65
66   /* basic machine hardware */
67   MCFG_CPU_ADD( "maincpu", TMS0980, 500000 ) /* Clock is wrong */
6668   MCFG_TMS1XXX_OUTPUT_PLA( stopthie_output_pla )
6769   MCFG_TMS1XXX_READ_K( READ8( stopthie_state, stopthie_read_k ) )
6870   MCFG_TMS1XXX_WRITE_O( WRITE16( stopthie_state, stopthie_write_o ) )
r241830r241831
7476ROM_START( stopthie )
7577   ROM_REGION( 0x1000, "maincpu", 0 )
7678   /* Taken from patent 4341385, might have made mistakes when creating this rom */
77   ROM_LOAD16_WORD( "stopthie.bin", 0x0000, 0x1000, BAD_DUMP CRC(49ef83ad) SHA1(407151f707aa4a62b7e034a1bcb957c42ea36707) )
79   ROM_LOAD16_WORD( "stopthie.bin", 0x0000, 0x1000, BAD_DUMP CRC(63162ce9) SHA1(2ff88a139020c48869fcacc04b0786b27530a802) )
7880ROM_END
7981
8082/***************************************************************************


Previous 199869 Revisions Next


© 1997-2024 The MAME Team