zone/linker.cmd
A.M. Rowsell f753eb9642
dev: fixed assembly errors, added linker script and Makefile
Additionally created a .gitignore to avoid committing object
code and output formats
2025-12-20 15:45:51 -05:00

6 lines
105 B
Batchfile

SECTIONS
{
.text 0xE000 : { *(.text) }
.data 0x7000 : { *(.data) }
.bss : { *(.bss) }
}