3x3 matrix multiplication
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
MEMORY
|
||||
{
|
||||
bootmem : ORIGIN = 0x0, LENGTH = 0x100000
|
||||
dram : ORIGIN = 0x80000000, LENGTH = 0x100000000
|
||||
dram : ORIGIN = 0x80000000, LENGTH = 0x20000000
|
||||
dram_pim : ORIGIN = 0xA0000000, LENGTH = 0x20000000
|
||||
}
|
||||
|
||||
ENTRY(_start)
|
||||
@@ -18,4 +19,6 @@ SECTIONS
|
||||
. = ALIGN(8);
|
||||
. = . + 0x100000; # 1 MiB Stack
|
||||
LD_STACK_PTR = .;
|
||||
|
||||
.pim_data : { KEEP(*(.pim_data)) } > dram_pim
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user