Fixing typos

This commit is contained in:
dingusdev 2023-12-01 14:04:26 -07:00
parent 46961711e4
commit 7eb2fd23c3
3 changed files with 9 additions and 9 deletions

View File

@ -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:

View File

@ -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

View File

@ -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,