diff options
author | Freya Murphy <freya@freyacat.org> | 2024-01-28 19:22:09 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-01-28 19:22:09 -0500 |
commit | 6957948f3af47f5b57770ac1692843bba768c285 (patch) | |
tree | 247d3709d6414fa68a582b9bd6e8deb62547760c /src/arch/amd64/linker.ld | |
parent | Merge remote-tracking branch 'origin/main' (diff) | |
download | corn-6957948f3af47f5b57770ac1692843bba768c285.tar.gz corn-6957948f3af47f5b57770ac1692843bba768c285.tar.bz2 corn-6957948f3af47f5b57770ac1692843bba768c285.zip |
memory changes
Diffstat (limited to 'src/arch/amd64/linker.ld')
-rw-r--r-- | src/arch/amd64/linker.ld | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/amd64/linker.ld b/src/arch/amd64/linker.ld index 4e796e2..3dd90ff 100644 --- a/src/arch/amd64/linker.ld +++ b/src/arch/amd64/linker.ld @@ -2,6 +2,8 @@ ENTRY(start) SECTIONS { . = 1M; + + kernel_start = .; .boot BLOCK(4K) : ALIGN(4K) { @@ -22,4 +24,6 @@ SECTIONS { { *(.bss) } + + kernel_end = .; } |