CDROM: Implement stop command

This commit is contained in:
Connor McLaughlin
2019-10-28 17:19:29 +10:00
parent 6e60991fd0
commit c15822d745
2 changed files with 36 additions and 3 deletions

View File

@@ -114,7 +114,8 @@ private:
ReadingID,
Reading,
Playing,
Pausing
Pausing,
Stopping,
};
union StatusRegister
@@ -197,6 +198,7 @@ private:
void DoInitComplete();
void DoSeekComplete();
void DoPauseComplete();
void DoStopComplete();
void DoIDRead();
void DoSectorRead();
void ProcessDataSector(const u8* raw_sector);