Add software files

This commit is contained in:
Byron Lathi
2022-03-05 18:48:19 -06:00
parent bc98b67ddf
commit a2fdcc5553
4 changed files with 99 additions and 0 deletions

10
sw/link.ld Normal file
View File

@@ -0,0 +1,10 @@
MEMORY
{
ROM: start=$8000, size=$8000, type=ro, define=yes, fill=yes, file=%O;
}
SEGMENTS
{
CODE: load=ROM, type=ro;
VECTORS: load=ROM, type=ro, offset=$7ffa;
}