trunk/src/mame/machine/seicop.c
| r18050 | r18051 | |
| 2786 | 2786 | UINT16 rom_data = (ROM[rom_addr + 0]) | (ROM[rom_addr + 1]<<8); |
| 2787 | 2787 | |
| 2788 | 2788 | /* writes to some unemulated COP registers, then puts the result in here, adding a parameter taken from ROM */ |
| 2789 | | space.write_word(cop_register[0]+(0x44 + offset * 4), rom_data); |
| 2789 | //space.write_word(cop_register[0]+(0x44 + offset * 4), rom_data); |
| 2790 | 2790 | |
| 2791 | 2791 | printf("%04x%04x %04x %04x\n",cop_rom_addr_hi,cop_rom_addr_lo,cop_rom_addr_unk,rom_data); |
| 2792 | 2792 | return; |
trunk/src/mame/drivers/cps1.c
| r18050 | r18051 | |
| 3063 | 3063 | |
| 3064 | 3064 | /* video hardware */ |
| 3065 | 3065 | MCFG_SCREEN_ADD("screen", RASTER) |
| 3066 | | MCFG_SCREEN_REFRESH_RATE(59.61) /* verified on one of the input gates of the 74ls08@4J on GNG romboard 88620-b-2 */ |
| 3067 | | MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0)) |
| 3068 | | MCFG_SCREEN_SIZE(64*8, 32*8) |
| 3069 | | MCFG_SCREEN_VISIBLE_AREA(8*8, (64-8)*8-1, 2*8, 30*8-1 ) |
| 3066 | // MCFG_SCREEN_REFRESH_RATE(59.61) /* verified on one of the input gates of the 74ls08@4J on GNG romboard 88620-b-2 */ |
| 3067 | // MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0)) |
| 3068 | // MCFG_SCREEN_SIZE(64*8, 32*8) |
| 3069 | // MCFG_SCREEN_VISIBLE_AREA(8*8, (64-8)*8-1, 2*8, 30*8-1 ) |
| 3070 | MCFG_SCREEN_RAW_PARAMS(XTAL_16MHz/2, 518, 64, 448, 259, 16, 240) /* guess: assume that CPS-1 uses the same exact timings as CPS-2 */ |
| 3070 | 3071 | MCFG_SCREEN_UPDATE_DRIVER(cps_state, screen_update_cps1) |
| 3071 | 3072 | MCFG_SCREEN_VBLANK_DRIVER(cps_state, screen_eof_cps1) |
| 3072 | 3073 | |