From 7959792059f2c52df648ab02ec998637439913c3 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Fri, 19 Aug 2022 17:20:57 -0500 Subject: [PATCH] Correct documentation typos --- docs/patch_base_domain.md | 2 +- docs/patch_overwrite_ios.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/patch_base_domain.md b/docs/patch_base_domain.md index a375d9e..00643c9 100644 --- a/docs/patch_base_domain.md +++ b/docs/patch_base_domain.md @@ -26,4 +26,4 @@ We can identify five types of URLs within the main DOL to patch: - Appears to be present for `GetECConfig`, which is most likely not called within the Wii Shop channel. Instead, `ECommerceInterface#setWebSvcUrls` is preferred. ## Execution -We simply iterate through these 5 types of URLs, replace the domain, and pad if appropiate. Doing so allows us to not fragment the rest of the URL with null bytes should padding be added. \ No newline at end of file +We simply iterate through these 5 types of URLs, replace the domain, and pad if appropriate. Doing so allows us to not fragment the rest of the URL with null bytes should padding be added. \ No newline at end of file diff --git a/docs/patch_overwrite_ios.md b/docs/patch_overwrite_ios.md index 5de05ea..09ed1c8 100644 --- a/docs/patch_overwrite_ios.md +++ b/docs/patch_overwrite_ios.md @@ -136,7 +136,7 @@ Only 8 bits are set for `DBAT7U`, providing us with only 8 Mb of range (`0x93000 IOS' executable code resides in the higher range of MEM2 (for our purposes, `0x939f0000` to `0x93a80000`), falling out of our accessible range. -We must DBAT7U to contain `0x930001ff`, allowing us 16 Mb - from `0x93000000` to `0x94000000`, technically. We do not exceed `0x93a80000` for our purposes. +We must update DBAT7U to contain `0x930001ff`, allowing us 16 Mb - from `0x93000000` to `0x94000000`, technically. We do not exceed `0x93a80000` for our purposes. --- Next, we need to devise a way to have the channel overwrite IOS memory.