Add conveniance functions for a PIM array

This commit is contained in:
2023-12-01 18:00:28 +01:00
parent 54bf6bda11
commit 2547f7030d
6 changed files with 160 additions and 63 deletions

View File

@@ -1,6 +1,6 @@
MEMORY
{
bootmem : ORIGIN = 0x0, LENGTH = 0x10000
bootmem : ORIGIN = 0x0, LENGTH = 0x100000
dram : ORIGIN = 0x80000000, LENGTH = 0x100000000
}
@@ -16,6 +16,6 @@ SECTIONS
.bss : { *(.bss) } > dram
. = ALIGN(8);
. = . + 0x8000;
. = . + 0x100000; # 1 MiB Stack
LD_STACK_PTR = .;
}