mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
ffa38b183b
This page has been a big help in adding support for this new chip: https://wiki.osdev.org/HiFive-1_Bare_Bones
11 lines
178 B
Plaintext
11 lines
178 B
Plaintext
|
|
MEMORY
|
|
{
|
|
FLASH_TEXT (rw) : ORIGIN = 0x20010000, LENGTH = 0x6a120
|
|
RAM (xrw) : ORIGIN = 0x80000000, LENGTH = 0x4000
|
|
}
|
|
|
|
_stack_size = 2K;
|
|
|
|
INCLUDE "targets/riscv.ld"
|