trunk/src/emu/video/stvvdp2.c
| r21685 | r21686 | |
| 5455 | 5455 | if ( stv2_current_tilemap.window_control.enabled[0] || stv2_current_tilemap.window_control.enabled[1] ) |
| 5456 | 5456 | { |
| 5457 | 5457 | //popmessage("Window control for RBG"); |
| 5458 | stv_vdp2_apply_window_on_layer(mycliprect); |
| 5458 | 5459 | stv2_current_tilemap.window_control.enabled[0] = 0; |
| 5459 | 5460 | stv2_current_tilemap.window_control.enabled[1] = 0; |
| 5460 | | stv_vdp2_apply_window_on_layer(mycliprect); |
| 5461 | 5461 | } |
| 5462 | 5462 | |
| 5463 | 5463 | stv2_current_tilemap.fade_control = fade_control; |
| r21685 | r21686 | |
| 6341 | 6341 | { |
| 6342 | 6342 | int s_x=0,e_x=0,s_y=0,e_y=0; |
| 6343 | 6343 | |
| 6344 | | if ( stv2_current_tilemap.window_control.enabled[0] && stv2_current_tilemap.window_control.area[0]) |
| 6344 | if ( stv2_current_tilemap.window_control.enabled[0] && (!stv2_current_tilemap.window_control.area[0])) |
| 6345 | 6345 | { |
| 6346 | 6346 | /* w0, transparent outside supported */ |
| 6347 | 6347 | stv_vdp2_get_window0_coordinates(&s_x, &e_x, &s_y, &e_y); |
| r21685 | r21686 | |
| 6353 | 6353 | |
| 6354 | 6354 | return 1; |
| 6355 | 6355 | } |
| 6356 | | else if ( stv2_current_tilemap.window_control.enabled[1] && stv2_current_tilemap.window_control.area[1] ) |
| 6356 | else if ( stv2_current_tilemap.window_control.enabled[1] && (!stv2_current_tilemap.window_control.area[1]) ) |
| 6357 | 6357 | { |
| 6358 | 6358 | /* w1, transparent outside supported */ |
| 6359 | 6359 | stv_vdp2_get_window1_coordinates(&s_x, &e_x, &s_y, &e_y); |
trunk/src/mame/drivers/funkball.c
| r21685 | r21686 | |
| 50 | 50 | Notes: |
| 51 | 51 | Cyrix GXm233 - Main CPU; Cyrix GX Media running at 233MHz. Clock is generated by the Cyrix CX5520 |
| 52 | 52 | and a 14.31818MHz xtal. That gives a 66.6MHz bus clock with a 3.5X multiplier for 233MHz |
| 53 | | Cyrix CX5220 - CPU-support chipset (BGA IC) |
| 53 | Cyrix CX5520 - CPU-support chipset (BGA IC) |
| 54 | 54 | FLASH.U29/30 - Intel Strata-Flash DA28F320J5 SSOP56 contained on a plug-in daughterboard; graphics ROMs |
| 55 | 55 | FLASH.U3 - Intel Strata-Flash DA28F320J5 SSOP56 contained on a plug-in daughterboard; main program |
| 56 | 56 | KS0164 - Samsung Electronics KS0164 General Midi compliant 32-voice Wavetable Synthesizer chip |
| r21685 | r21686 | |
| 489 | 489 | return 0x89; // manufacturer code |
| 490 | 490 | |
| 491 | 491 | if(offset == 2 && (m_flash_addr == 0)) |
| 492 | | return 0x14; // device code, 32 MBit in both cases |
| 492 | return (m_flash_cmd & 0x80) ? 0x15 : 0x14; // device code, 32 MBit in both cases |
| 493 | 493 | |
| 494 | 494 | if(offset > 3) |
| 495 | 495 | printf("%02x FLASH DATA 0x90\n",offset); |
| r21685 | r21686 | |
| 499 | 499 | |
| 500 | 500 | if(m_flash_data_cmd == 0xff) |
| 501 | 501 | { |
| 502 | | UINT8 *ROM = memregion(m_flash_cmd & 0x80 ? "prg_flash" : "data_flash")->base(); |
| 502 | UINT8 *ROM = memregion(m_flash_cmd & 0x80 ? "data_flash" : "prg_flash")->base(); |
| 503 | 503 | |
| 504 | 504 | return ROM[offset + (m_flash_addr << 16)]; |
| 505 | 505 | } |
| r21685 | r21686 | |
| 1178 | 1178 | ROM_LOAD( "512k-epr.u62", 0x010000, 0x010000, CRC(cced894a) SHA1(298c81716e375da4b7215f3e588a45ca3ea7e35c) ) |
| 1179 | 1179 | |
| 1180 | 1180 | ROM_REGION(0x8000000, "prg_flash", ROMREGION_ERASE00) |
| 1181 | | ROM_LOAD( "flash.u3", 0x0000000, 0x400000, CRC(fb376abc) SHA1(ea4c48bb6cd2055431a33f5c426e52c7af6997eb) ) |
| 1181 | ROM_LOAD16_WORD_SWAP( "flash.u3", 0x0000000, 0x400000, CRC(fb376abc) SHA1(ea4c48bb6cd2055431a33f5c426e52c7af6997eb) ) |
| 1182 | 1182 | |
| 1183 | 1183 | ROM_REGION(0x8000000, "data_flash", ROMREGION_ERASE00) |
| 1184 | 1184 | ROM_LOAD( "flash.u29",0x0000000, 0x400000, CRC(7cf6ff4b) SHA1(4ccdd4864ad92cc218998f3923997119a1a9dd1d) ) |