diff options
Diffstat (limited to 'src/devices/machine/t10mmc.cpp')
-rw-r--r-- | src/devices/machine/t10mmc.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/machine/t10mmc.cpp b/src/devices/machine/t10mmc.cpp index b6f0fa68f34..bf16dc0d8d5 100644 --- a/src/devices/machine/t10mmc.cpp +++ b/src/devices/machine/t10mmc.cpp @@ -392,10 +392,10 @@ void t10mmc::ExecCommand() // // Read data from the device resulting from the execution of a command -void t10mmc::ReadData( UINT8 *data, int dataLength ) +void t10mmc::ReadData( uint8_t *data, int dataLength ) { - UINT32 temp; - UINT8 tmp_buffer[2048]; + uint32_t temp; + uint8_t tmp_buffer[2048]; switch ( command[0] ) { @@ -515,7 +515,7 @@ void t10mmc::ReadData( UINT8 *data, int dataLength ) data[6] = cdrom_get_track(m_cdrom, m_last_lba) + 1; // track data[7] = 0; // index - UINT32 frame = m_last_lba; + uint32_t frame = m_last_lba; if (msf) { @@ -603,7 +603,7 @@ void t10mmc::ReadData( UINT8 *data, int dataLength ) data[dptr++] = track; data[dptr++] = 0; - UINT32 tstart = cdrom_get_track_start(m_cdrom, cdrom_track); + uint32_t tstart = cdrom_get_track_start(m_cdrom, cdrom_track); if (msf) { @@ -633,7 +633,7 @@ void t10mmc::ReadData( UINT8 *data, int dataLength ) data[dptr++] = 1; data[dptr++] = 0; - UINT32 tstart = cdrom_get_track_start(m_cdrom, 0); + uint32_t tstart = cdrom_get_track_start(m_cdrom, 0); if (msf) { @@ -714,7 +714,7 @@ void t10mmc::ReadData( UINT8 *data, int dataLength ) // // Write data to the CD-ROM device as part of the execution of a command -void t10mmc::WriteData( UINT8 *data, int dataLength ) +void t10mmc::WriteData( uint8_t *data, int dataLength ) { switch (command[ 0 ]) { |