mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-11-09 21:14:57 -07:00
17 lines
196 B
Plaintext
17 lines
196 B
Plaintext
ENTRY(_start)
|
|
|
|
MEMORY
|
|
{
|
|
ROM (rx) : ORIGIN = 0x00000000, LENGTH = 1024
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
_text = .;
|
|
*(.text*)
|
|
*(.rodata*)
|
|
_etext = .;
|
|
} > ROM
|
|
} |