Move shadow to us, get some commands going

This commit is contained in:
Byron Lathi
2024-07-20 21:40:26 -07:00
parent f6eeb80e25
commit 3d05d07541
7 changed files with 287 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
MEMORY
{
RAM: start = $0000, size = $200;
ROM: start = $FF00, size = $100, file = %O;
ROM: start = $F000, size = $1000, file = %O;
}
SEGMENTS {
@@ -25,6 +25,6 @@ FEATURES {
SYMBOLS {
# Define the stack size for the application
__STACKSIZE__: value = $0200, type = weak;
__STACKSTART__: type = weak, value = $0800; # 2k stack
__STACKSIZE__: value = $0800, type = weak;
__STACKSTART__: type = weak, value = $0200; # 2k stack
}