Skip to content

Commit

Permalink
increase .text section
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-hofmeier committed May 29, 2023
1 parent 79b9e06 commit 011c3b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ios_kernel/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ int _main(void* arg)

map_info.paddr = 0x05116000 - 0x05100000 + 0x13d80000;
map_info.vaddr = 0x05116000;
map_info.size = 0xa000;
map_info.size = 0xf000;
map_info.domain = 1; // MCP
map_info.type = 3;
map_info.cached = 0xffffffff;
Expand Down
2 changes: 1 addition & 1 deletion ios_mcp/link.ld
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ SECTIONS {
}
}

ASSERT(SIZEOF(.text) < 0xa000, "ios_mcp text is too big");
ASSERT(SIZEOF(.text) < 0xf000, "ios_mcp text is too big");
ASSERT(SIZEOF(.bss) < 0x3000, "ios_mcp bss is too big");

0 comments on commit 011c3b7

Please sign in to comment.