Skip to content

Commit

Permalink
Merge pull request #1440 from gwald/patch-1
Browse files Browse the repository at this point in the history
Update ps-exe.ld
  • Loading branch information
nicolasnoble committed Sep 11, 2023
2 parents 2fba778 + d98d6b2 commit 22cfc50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mips/ps-exe.ld
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ TLOAD_ADDR = DEFINED(TLOAD_ADDR) ? TLOAD_ADDR : 0x80010000;

MEMORY {
loader : ORIGIN = (TLOAD_ADDR - 0x800), LENGTH = 2048
ram (rwx) : ORIGIN = 0x80010000, LENGTH = 2M - (TLOAD_ADDR - 0x80000000)
ram (rwx) : ORIGIN = TLOAD_ADDR, LENGTH = 2M - (TLOAD_ADDR - 0x80000000)
dcache : ORIGIN = 0x1f800000, LENGTH = 0x400
}

Expand Down

0 comments on commit 22cfc50

Please sign in to comment.