From 7012030ffc61693026d66efd5b907bf5d7ad87aa Mon Sep 17 00:00:00 2001 From: Pk11 Date: Fri, 22 Jan 2021 16:20:51 -0600 Subject: [PATCH] Fix a couple typos --- pages/_en-US/ds-index/dsi-twl-firm.md | 2 +- pages/_en-US/ds-index/retail-roms.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/_en-US/ds-index/dsi-twl-firm.md b/pages/_en-US/ds-index/dsi-twl-firm.md index def18468..99214be8 100644 --- a/pages/_en-US/ds-index/dsi-twl-firm.md +++ b/pages/_en-US/ds-index/dsi-twl-firm.md @@ -23,7 +23,7 @@ The Nintendo DS shipped with a 67Mhz processor in 2004. The Nintendo DSi shipped nds-bootstrap has TWL Clock Speed as an option, but it will not try to adjust the ROM to work with the higher clock speed. That's on the application itself, and applications not working with a higher clock speed is NOT a bug on the nds-bootstrap end. ### Nintendo DSi System Menu -The Nintendo DSi System Menu uses a signed 32-bit integer to determine the amount of free space on the device. Using a device source that goes above the 32-bit integer limit, this counter is overflowed into a negative number, which crashes into an "An error has occured" black screen. +The Nintendo DSi System Menu uses a signed 32-bit integer to determine the amount of free space on the device. Using a device source that goes above the 32-bit integer limit, this counter is overflowed into a negative number, which crashes into an "An error has occurred" black screen. The ranges that make it overflow is determined by pairs of two. For example, 1-2 GB of free space is allowed while 3-4 isn't. 5-6 GB of free space is allowed while 7-8 isn't. diff --git a/pages/_en-US/ds-index/retail-roms.md b/pages/_en-US/ds-index/retail-roms.md index b0e89c70..611dc4ef 100644 --- a/pages/_en-US/ds-index/retail-roms.md +++ b/pages/_en-US/ds-index/retail-roms.md @@ -38,7 +38,7 @@ Though rare, there are DS Cartridges with NAND based saves: WarioWare DIY & Jam There are different formats to use depending on the loader, but nds-bootstrap uses the raw `.sav` format. If you use a different format, here is a website you can use to convert it: http://www.shunyweb.info/convert.php ### Card Read DMA -Card DMA (stands for Direct Memory Access) is a more efficient way to read catridge data than by software. When there isn't any data available, code can still execute. In software catridge data reads, polling the register to see if there is new data wastes times. It is the preferred way of accessing data. +Card DMA (stands for Direct Memory Access) is a more efficient way to read cartridge data than by software. When there isn't any data available, code can still execute. In software cartridge data reads, polling the register to see if there is new data wastes times. It is the preferred way of accessing data. You can spot a game that uses dma via no$gba by enabling the DMA log on ARM9. A DMA access to the card uses AF000001 as the third parameter. - For example: `DMA2: 04100010 023C18C0 AF000001`