Previous 199869 Revisions Next

r17388 Tuesday 21st August, 2012 at 23:27:27 UTC by Angelo Salese
(MESS) Hooked up SCSI ROM
[src/mess/drivers]pcfx.c

trunk/src/mess/drivers/pcfx.c
r17387r17388
66
77  - BIOS error codes (guesses):
88    - Blue screen = MCU pad communication error
9    - Cyan screen = ?
9    - Cyan screen = SCSI communication error (current one)
1010
1111***************************************************************************/
1212
r17387r17388
152152   AM_RANGE( 0x00000C80, 0x00000C83 ) AM_NOP
153153   AM_RANGE( 0x00000E00, 0x00000EFF ) AM_READWRITE16( irq_read, irq_write, 0xffff )   /* Interrupt controller */
154154   AM_RANGE( 0x00000F00, 0x00000FFF ) AM_NOP
155   AM_RANGE( 0x00780000, 0x007FFFFF ) AM_ROM AM_REGION("scsi_rom", 0 )
155156   AM_RANGE( 0x80500000, 0x805000FF ) AM_NOP   /* HuC6273 */
156157ADDRESS_MAP_END
157158
r17387r17388
287288{
288289   if ( state )
289290   {
290//printf("Setting irq line %d\n", line);
291printf("Setting irq line %d\n", line);
291292      m_irq_pending |= ( 1 << ( 15 - line ) );
292293   }
293294   else
294295   {
295//printf("Clearing irq line %d\n", line);
296printf("Clearing irq line %d\n", line);
296297      m_irq_pending &= ~( 1 << ( 15 - line ) );
297298   }
298299   check_irqs();
r17387r17388
408409ROM_START( pcfxga )
409410   ROM_REGION( 0x100000, "user1", 0 )
410411   ROM_LOAD( "pcfxga.rom", 0x000000, 0x100000, CRC(41c3776b) SHA1(a9372202a5db302064c994fcda9b24d29bb1b41c) )
412
413   ROM_REGION( 0x80000, "scsi_rom", ROMREGION_ERASEFF )
411414ROM_END
412415
413416

Previous 199869 Revisions Next


© 1997-2024 The MAME Team