fixed mametesters 05317 [smf]

This commit is contained in:
smf- 2013-10-01 23:51:19 +00:00
parent 892fee7f12
commit 8a686cebfe
2 changed files with 2 additions and 1 deletions

View File

@ -122,6 +122,8 @@ bool ata_flash_pccard_device::is_ready()
void ata_flash_pccard_device::process_command()
{
m_buffer_size = IDE_DISK_SECTOR_SIZE;
switch (m_command)
{
case IDE_COMMAND_TAITO_GNET_UNLOCK_1:

View File

@ -769,7 +769,6 @@ void ide_hdd_device::device_reset()
UINT32 metalength;
if (m_handle->read_metadata (HARD_DISK_IDENT_METADATA_TAG, 0, m_buffer, 512, metalength) == CHDERR_NONE)
{
printf( "identify from chd\n" );
for( int w = 0; w < 256; w++ )
{
m_identify_buffer[w] = (m_buffer[(w * 2) + 1] << 8) | m_buffer[w * 2];