mame compile fix (nw)

This commit is contained in:
Miodrag Milanovic 2014-03-16 11:43:43 +00:00
parent 49e580cc90
commit ed5a2a08dc
2 changed files with 3 additions and 6 deletions

View file

@ -136,9 +136,6 @@ struct s3c2410_interface
void s3c2410_uart_fifo_w( device_t *device, int uart, UINT8 data);
void s3c2410_touch_screen( device_t *device, int state);
void s3c2410_request_eint( device_t *device, UINT32 number);
WRITE_LINE_DEVICE_HANDLER( s3c2410_pin_frnb_w );
void s3c2410_nand_calculate_mecc( UINT8 *data, UINT32 size, UINT8 *mecc);
/*******************************************************************************

View file

@ -273,7 +273,7 @@ WRITE8_MEMBER(ghosteo_state::s3c2410_nand_command_w )
case 0xFF :
{
nand.mode = NAND_M_INIT;
s3c2410_pin_frnb_w( m_s3c2410, 1);
m_s3c2410->frnb_w(1);
}
break;
case 0x00 :
@ -313,8 +313,8 @@ WRITE8_MEMBER(ghosteo_state::s3c2410_nand_address_w )
nand.addr_load_ptr++;
if ((nand.mode == NAND_M_READ) && (nand.addr_load_ptr == 4))
{
s3c2410_pin_frnb_w( m_s3c2410, 0);
s3c2410_pin_frnb_w( m_s3c2410, 1);
m_s3c2410->frnb_w(0);
m_s3c2410->frnb_w(1);
}
}
break;