Пример #1
0
void FASTCALL DriveReadSector(u8 * buff,u32 StartSector,u32 SectorCount,u32 secsz)
{
	//printf("DriveReadSector %5d %5d %5d\n",StartSector,SectorCount,secsz); 
    gdromaccesses+=SectorCount*secsz;
	
	GetDriveSector(buff,StartSector,SectorCount,secsz);

//    buffer_dump(buff,secsz);
	
	//if (CurrDrive)
	//	CurrDrive->ReadSector(buff,StartSector,SectorCount,secsz);
}
Пример #2
0
void libGDR_ReadSector(u8 * buff,u32 StartSector,u32 SectorCount,u32 secsz)
{
	GetDriveSector(buff,StartSector,SectorCount,secsz);
	//if (CurrDrive)
	//	CurrDrive->ReadSector(buff,StartSector,SectorCount,secsz);
}