[Jun/08/2002]

A Taiwanese Quiz Game


7802, 7803, 7804, 7805 = mc68000 rom
7801 = mc6295 rom


other's are graphic. :)

--

the translated name is Quiz 365 

in chinese it's Wen Da 365


Rom Loading (wrong but it gives you the CRC's etc.)

ROM_START( twquiz )
	ROM_REGION( 0x200000, REGION_CPU1, 0 ) /* 68000 Code */
	ROM_LOAD16_BYTE( "7802.rom", 0x000000, 0x040000, 0xc3238a9d )
	ROM_LOAD16_BYTE( "7803.rom", 0x000001, 0x040000, 0x5b7a78d3 )
	ROM_LOAD16_BYTE( "7804.rom", 0x100000, 0x080000, 0x46d04ace )
	ROM_LOAD16_BYTE( "7805.rom", 0x100001, 0x080000, 0x6db33222 )

	ROM_REGION( 0x100000, REGION_GFX1, ROMREGION_DISPOSE ) /* GFX */
	ROM_LOAD( "7806.rom", 0x000000, 0x100000, 0x75767c6f )

	ROM_REGION( 0x80000, REGION_GFX2, ROMREGION_DISPOSE ) /* GFX */
	ROM_LOAD( "7807.rom", 0x000000, 0x080000, 0x60fb1dfe )

	ROM_REGION( 0x80000, REGION_GFX3, ROMREGION_DISPOSE ) /* GFX */
	ROM_LOAD( "7808.rom", 0x000000, 0x080000, 0xa09fd4a4 )

	ROM_REGION( 0x100000, REGION_GFX4, ROMREGION_DISPOSE ) /* GFX */
	ROM_LOAD( "7809.rom", 0x000000, 0x100000, 0x139d52ab )

	ROM_REGION( 0x100000, REGION_GFX5, ROMREGION_DISPOSE ) /* GFX */
	ROM_LOAD( "7810.rom", 0x000000, 0x100000, 0x4b1a4984 )

	ROM_REGION( 0x100000, REGION_SOUND1, 0 )
	ROM_LOAD( "7801.rom", 0x000000, 0x100000, 0x285cc62a )
ROM_END

-