os-workshop

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 0517db7e90c384c6d6525f466f6e3c169e5d4d6c
parent e94479478c4e6a899a184d0ac4503561362e030b
Author: Brian Swetland <swetland@frotz.net>
Date:   Sun, 15 May 2022 10:59:05 -0700

build: fix kernel linkscript memory size

Diffstat:
Mmake/kernel.ram.ld | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/make/kernel.ram.ld b/make/kernel.ram.ld @@ -1,6 +1,6 @@ MEMORY { - RAM (rwx) : ORIGIN = 0xC0008000, LENGTH = 0x400000 + RAM (rwx) : ORIGIN = 0xC0008000, LENGTH = (0x02000000 - 0x8000) } INCLUDE "make/common.ram.ld"