From 7eb2fd23c36916fc3ffa99dda3519b4a3a4abc07 Mon Sep 17 00:00:00 2001 From: dingusdev <52434309+dingusdev@users.noreply.github.com> Date: Fri, 1 Dec 2023 14:04:26 -0700 Subject: [PATCH] Fixing typos --- README.md | 6 +++--- core/hostevents_sdl.cpp | 4 ++-- devices/ioctrl/macio.h | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9246423..6864dc0 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ Be warned the program is highly unfinished and could use a lot of testing. Any f ## Philosophy of Use -While many other PowerPC emus exist (PearPC, Sheepshaver), none of them currently attempt emulation of PPC Macs accurately (except for QEMU). +While many other PowerPC emus exist (PearPC, Sheepshaver), none of them currently attempt emulation of PowerPC Macs accurately (except for QEMU). -This program aims to not only improve upon what Sheepshaver, PearPC, and other PowerPC mac emulators have done, but also to provide a better debugging environment. This currently is designed to work best with PowerPC Old World ROMs, including those of the PowerMac 6100, 7200, and G3 Beige. +This program aims to not only improve upon what Sheepshaver, PearPC, and other PowerPC Mac emulators have done, but also to provide a better debugging environment. This currently is designed to work best with PowerPC Old World ROMs, including those of the PowerMac 6100, 7200, and G3 Beige. ## Implemented Features @@ -57,7 +57,7 @@ You will also have to recursive clone or run git submodule update --init --recursive ``` -This is because the CubeB module is not included by default. All other components are already included in the thirdparty folder and compiled along with the rest of DingusPPC. +This is because the CubeB and Capstone modules are not included by default. All other components are already included in the thirdparty folder and compiled along with the rest of DingusPPC. For example, to build the project in a Unix-like environment, you will need to run the following commands in the OS terminal: diff --git a/core/hostevents_sdl.cpp b/core/hostevents_sdl.cpp index 9cc5c1d..b3a0b38 100644 --- a/core/hostevents_sdl.cpp +++ b/core/hostevents_sdl.cpp @@ -70,7 +70,7 @@ void EventManager::poll_events() } this->_keyboard_signal.emit(ke); } else { - LOG_F(WARNING, "Unknow key %x pressed", event.key.keysym.sym); + LOG_F(WARNING, "Unknown key %x pressed", event.key.keysym.sym); } } break; @@ -266,7 +266,7 @@ static int get_sdl_event_key_code(const SDL_KeyboardEvent &event) // French keyboard case 0X29: return AdbKey_Minus; // Right parenthesis case 0X43: return AdbKey_KeypadMultiply; // Star/Mu - //0XB2 is superscript 2. Which key this one is supposed to map to? + //0XB2 is superscript 2. Which Mac key should this one map to? case 0XF9: return AdbKey_Quote; // U-grave // Italian keyboard diff --git a/devices/ioctrl/macio.h b/devices/ioctrl/macio.h index 2b63ef9..9ec4973 100644 --- a/devices/ioctrl/macio.h +++ b/devices/ioctrl/macio.h @@ -225,10 +225,10 @@ enum : uint8_t { MIO_OHARE_DMA_FLOPPY = 1, MIO_OHARE_DMA_ETH_XMIT = 2, MIO_OHARE_DMA_ETH_RCV = 3, - MIO_OHARE_DMA_ESSC_A_XMIT = 4, - MIO_OHARE_DMA_ESSC_A_RCV = 5, - MIO_OHARE_DMA_ESSC_B_XMIT = 6, - MIO_OHARE_DMA_ESSC_B_RCV = 7, + MIO_OHARE_DMA_ESCC_A_XMIT = 4, + MIO_OHARE_DMA_ESCC_A_RCV = 5, + MIO_OHARE_DMA_ESCC_B_XMIT = 6, + MIO_OHARE_DMA_ESCC_B_RCV = 7, MIO_OHARE_DMA_AUDIO_OUT = 8, MIO_OHARE_DMA_AUDIO_IN = 9, MIO_OHARE_DMA_IDE0 = 0xB,