summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2019-11-15 16:41:33 -0800
committerPokechu22 <Pokechu022@gmail.com>2020-01-04 11:43:29 -0800
commitc564d6410402d93dc81ed146e09657e434722e46 (patch)
treef2528eea3cb0e2abe351d8a753b40e1029f1a66e /Source/Core
parent84f099cf62ab03c7a02d92e4d0bd924bbf34f897 (diff)
Remove unused drive debug command constants
The corresponding code that used these was removed in 2009 with 93b83f8d659. 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).
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/HW/DVD/DVDInterface.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Core/Core/HW/DVD/DVDInterface.cpp b/Source/Core/Core/HW/DVD/DVDInterface.cpp
index 498de9b42c..5a797d0dd5 100644
--- a/Source/Core/Core/HW/DVD/DVDInterface.cpp
+++ b/Source/Core/Core/HW/DVD/DVDInterface.cpp
@@ -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
{