Limit the size of the binary to not overlap with other code

This commit is contained in:
Maschell 2022-02-03 17:28:59 +01:00
parent a3c549c0da
commit d866a17af8
1 changed files with 1 additions and 1 deletions

View File

@ -23,4 +23,4 @@ SECTIONS {
}
}
ASSERT((SIZEOF(.text) + SIZEOF(.data)) < 0x30000, "elf is too big");
ASSERT((SIZEOF(.text) + SIZEOF(.data)) < 0x2F000, "elf is too big");