mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
ebf70ab18e
Run a range of tests in CI, to make sure browser wasm and baremetal don't regress too badly. I have intentionally filtered out tests, so that newly added tests to TEST_PACKAGES_FAST will be added here as well (and can be excluded if needed).
17 lines
353 B
Plaintext
17 lines
353 B
Plaintext
|
|
/* Memory map:
|
|
* https://github.com/qemu/qemu/blob/master/hw/riscv/virt.c
|
|
* Looks like we can use any address starting from 0x80000000 (so 2GB of space).
|
|
* However, using a large space slows down tests.
|
|
*/
|
|
MEMORY
|
|
{
|
|
RAM (rwx) : ORIGIN = 0x80000000, LENGTH = 100M
|
|
}
|
|
|
|
REGION_ALIAS("FLASH_TEXT", RAM)
|
|
|
|
_stack_size = 2K;
|
|
|
|
INCLUDE "targets/riscv.ld"
|