dev: fixed assembly errors, added linker script and Makefile
Additionally created a .gitignore to avoid committing object code and output formats
This commit is contained in:
parent
1353091dda
commit
f753eb9642
5 changed files with 372 additions and 246 deletions
6
linker.cmd
Normal file
6
linker.cmd
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
SECTIONS
|
||||
{
|
||||
.text 0xE000 : { *(.text) }
|
||||
.data 0x7000 : { *(.data) }
|
||||
.bss : { *(.bss) }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue