kern: fix copy/paste error

This commit is contained in:
Michael Scire 2020-12-01 19:21:45 -08:00 committed by SciresM
parent 3c8e7de915
commit 972b396f61
2 changed files with 2 additions and 2 deletions

View file

@ -553,7 +553,7 @@ namespace ams::kern::board::nintendo::nx {
if (arg != nullptr) { if (arg != nullptr) {
/* Get the address of the legacy IRAM region. */ /* Get the address of the legacy IRAM region. */
const KVirtualAddress iram_address = KMemoryLayout::GetDeviceVirtualAddress(KMemoryRegionType_LegacyLpsIram) + 64_KB; const KVirtualAddress iram_address = KMemoryLayout::GetDeviceVirtualAddress(KMemoryRegionType_LegacyLpsIram) + 64_KB;
constexpr size_t RebootPayloadSize = 0x2E000; constexpr size_t RebootPayloadSize = 0x24000;
/* NOTE: Atmosphere extension; if we received an exception context from Panic(), */ /* NOTE: Atmosphere extension; if we received an exception context from Panic(), */
/* generate a fatal error report using it. */ /* generate a fatal error report using it. */

View file

@ -104,7 +104,7 @@ namespace ams::kern::board::nintendo::nx::smc {
/* Backup the current thread pointer. */ /* Backup the current thread pointer. */
const uintptr_t current_thread_pointer_value = cpu::GetCurrentThreadPointerValue(); const uintptr_t current_thread_pointer_value = cpu::GetCurrentThreadPointerValue();
__asm__ __volatile__("smc #1" __asm__ __volatile__("smc #0"
: "+r"(x0), "+r"(x1), "+r"(x2), "+r"(x3), "+r"(x4), "+r"(x5), "+r"(x6), "+r"(x7) : "+r"(x0), "+r"(x1), "+r"(x2), "+r"(x3), "+r"(x4), "+r"(x5), "+r"(x6), "+r"(x7)
: :
: "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18", "cc", "memory" : "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18", "cc", "memory"