Sync with MESS (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2012-04-12 05:56:26 +00:00
parent 9ecbecb503
commit cd6204dec0
3 changed files with 10 additions and 0 deletions

View File

@ -130,6 +130,7 @@ enum
XTAL_16_9344MHz = 16934400, /* Usually used to drive 90's Yamaha OPL/FM chips */
XTAL_17_36MHz = 17360000, /* OMTI Series 10 SCSI controller */
XTAL_17_73447MHz = 17734470, /* 4 times the PAL subcarrier */
XTAL_17_734472MHz = 17734472, /* actually 4 times the PAL subcarrier */
XTAL_18MHz = 18000000, /* S.A.R, Ikari Warriors 3 */
XTAL_18_432MHz = 18432000, /* Extremely common, used on 100's of PCBs */
XTAL_18_720MHz = 18720000, /* Nokia MikroMikko 1 */

View File

@ -1272,6 +1272,13 @@ WRITE8_DEVICE_HANDLER( sp0256_ALD_w )
return;
}
READ_LINE_DEVICE_HANDLER( sp0256_lrq_r )
{
sp0256_state *sp = get_safe_token(device);
return sp->lrq == 0x8000;
}
READ_LINE_DEVICE_HANDLER( sp0256_sby_r )
{
sp0256_state *sp = get_safe_token(device);

View File

@ -62,6 +62,8 @@ struct _sp0256_interface
void sp0256_bitrevbuff(UINT8 *buffer, unsigned int start, unsigned int length);
WRITE8_DEVICE_HANDLER( sp0256_ALD_w );
READ_LINE_DEVICE_HANDLER( sp0256_lrq_r );
READ_LINE_DEVICE_HANDLER( sp0256_sby_r );
READ16_DEVICE_HANDLER( spb640_r );