Remove unused drive debug command constants

The corresponding code that used these was removed in 2009 with 93b83f8d65.  Now their only purpose is to generate warnings on osx.

Minimalistic documentation on these commands can be found at http://hitmen.c02.at/files/yagcd/yagcd/chap5.html#sec5.7.2 and https://web.archive.org/web/20070328200323/http://tmb.elitedvb.net/dvd-game/index.php/CMDFE.  Those constants only relate to the 0x11 subcommand, which is one of many.  Most can't be properly emulated unless we LLE the drive firmware (in which case, they don't need to be reimplemented).
This commit is contained in:
Pokechu22 2019-11-15 16:41:33 -08:00
parent 84f099cf62
commit c564d64104

View File

@ -98,12 +98,6 @@ constexpr u32 DI_DMA_CONTROL_REGISTER = 0x1C;
constexpr u32 DI_IMMEDIATE_DATA_BUFFER = 0x20;
constexpr u32 DI_CONFIG_REGISTER = 0x24;
// debug commands which may be ORd
constexpr u32 STOP_DRIVE = 0;
constexpr u32 START_DRIVE = 0x100;
constexpr u32 ACCEPT_COPY = 0x4000;
constexpr u32 DISC_CHECK = 0x8000;
// DI Status Register
union UDISR
{