Fixup CD freeze?

This commit is contained in:
2024-07-01 23:01:41 +02:00
parent 271733a7fe
commit 07756fd180
2 changed files with 30 additions and 3 deletions

View File

@@ -31,6 +31,7 @@ ENTRY(_ZN10JabyEngine5startEv)
TLOAD_ADDR = DEFINED(TLOAD_ADDR) ? TLOAD_ADDR : 0x80010000;
MEMORY {
zero : ORIGIN = 0x0 LENGTH = 0x100
bios : ORIGIN = 0x100, LENGTH = 0x500
loader : ORIGIN = (TLOAD_ADDR - 0x800), LENGTH = 2048
ram(rwx) : ORIGIN = 0x80010000, LENGTH = 2M - 0x10000
@@ -53,6 +54,10 @@ __stack_start = ORIGIN(ram) + LENGTH(ram);
SECTIONS {
.zero (NOLOAD) : {
_ZN10JabyEngine2CD4zeroE = .;
} > zero
.bios (NOLOAD) : {
_ZN10JabyEngine15table_of_tablesE = .;
} > bios