trunk/src/mame/drivers/mpu4vid.c
r31325 | r31326 | |
273 | 273 | DECLARE_DRIVER_INIT(crmaze3a); |
274 | 274 | DECLARE_DRIVER_INIT(skiltrek); |
275 | 275 | DECLARE_DRIVER_INIT(crmaze3); |
| 276 | DECLARE_DRIVER_INIT(cybcas); |
276 | 277 | DECLARE_MACHINE_START(mpu4_vid); |
277 | 278 | DECLARE_MACHINE_RESET(mpu4_vid); |
278 | 279 | DECLARE_VIDEO_START(mpu4_vid); |
r31325 | r31326 | |
1816 | 1817 | m_current_chr_table = prizeinv_data; |
1817 | 1818 | } |
1818 | 1819 | |
| 1820 | static const bwb_chr_table cybcas_data1[5] = { |
| 1821 | //Magic number 724A |
| 1822 | |
| 1823 | // PAL Codes |
| 1824 | // 0 1 2 3 4 5 6 7 8 |
| 1825 | // ?? ?? 20 0F 24 3C 36 27 09 |
| 1826 | |
| 1827 | {0x67},{0x17},{0x0f},{0x24},{0x3c}, |
| 1828 | }; |
| 1829 | |
| 1830 | static mpu4_chr_table cybcas_data[8] = { |
| 1831 | {0xEF, 0x02},{0x81, 0x00},{0xCE, 0x00},{0x00, 0x2e}, |
| 1832 | {0x06, 0x20},{0xC6, 0x0f},{0xF8, 0x24},{0x8E, 0x3c}, |
| 1833 | }; |
| 1834 | |
| 1835 | DRIVER_INIT_MEMBER(mpu4vid_state,cybcas) |
| 1836 | { |
| 1837 | //no idea what this should be, use blues boys table for now |
| 1838 | m_bwb_chr_table1 = cybcas_data1; |
| 1839 | m_current_chr_table = cybcas_data; |
| 1840 | } |
| 1841 | |
| 1842 | |
1819 | 1843 | void mpu4vid_state::mpu4vid_char_cheat( int address) |
1820 | 1844 | { |
1821 | 1845 | UINT8* cheattable = memregion( "video" )->base()+address; |
r31325 | r31326 | |
3782 | 3806 | |
3783 | 3807 | /* Nova - is this the same video board? One of the games displays 'Resetting' but the others do nothing interesting and access strange addresses */ |
3784 | 3808 | /* All contain BwB video in the BIOS rom tho */ |
3785 | | GAME( 199?,v4cybcas, 0, bwbvid5, mpu4, driver_device, 0, ROT0, "Nova","Cyber Casino (Nova) (MPU4 Video)",GAME_FLAGS ) |
| 3809 | GAME( 199?,v4cybcas, 0, bwbvid5, mpu4, mpu4vid_state, cybcas, ROT0, "Nova","Cyber Casino (Nova) (MPU4 Video)",GAME_FLAGS ) |
3786 | 3810 | GAME( 199?,v4miami, 0, bwbvid5, mpu4, driver_device, 0, ROT0, "Nova","Miami Dice (Nova) (MPU4 Video)",GAME_FLAGS ) |
3787 | 3811 | GAME( 199?,v4missis, 0, bwbvid5, mpu4, driver_device, 0, ROT0, "Nova","Mississippi Lady (Nova) (MPU4 Video)",GAME_FLAGS ) |
3788 | 3812 | GAME( 199?,v4picdil, 0, bwbvid5, mpu4, driver_device, 0, ROT0, "Nova","Piccadilly Nights (Nova) (MPU4 Video)",GAME_FLAGS ) |