mirror of
https://github.com/antonblanchard/chiselwatt.git
synced 2026-02-28 17:29:58 +00:00
Added hello_world sources and new Makefile targets for building hello_world and Micropython inside containers. Updated documentation reflecting these changes and moved binaries to ./samples/binaries/. Signed-off-by: Carlos de Paula <me@carlosedp.com>
14 lines
156 B
Plaintext
14 lines
156 B
Plaintext
SECTIONS
|
|
{
|
|
_start = .;
|
|
. = 0;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = 0x1000;
|
|
.text : { *(.text) }
|
|
. = 0x2000;
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|