Additionally created a .gitignore to avoid committing object code and output formats
6 lines
105 B
Batchfile
6 lines
105 B
Batchfile
SECTIONS
|
|
{
|
|
.text 0xE000 : { *(.text) }
|
|
.data 0x7000 : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|