Common: Add a basic ISO reader class

This commit is contained in:
Connor McLaughlin
2019-11-29 23:36:25 +10:00
parent ea35c5f3bc
commit 3b11d936df
7 changed files with 449 additions and 0 deletions

View File

@ -183,6 +183,9 @@ public:
// Seek to track and position.
bool Seek(u32 track_number, const Position& pos_in_track);
// Seek to track and LBA.
bool Seek(u32 track_number, LBA lba);
// Read from the current LBA. Returns the number of sectors read.
u32 Read(ReadMode read_mode, u32 sector_count, void* buffer);