Use actual values from sd card

This commit is contained in:
Byron Lathi
2023-08-15 19:30:11 -07:00
parent dfdb41a875
commit 68ff523b10
4 changed files with 84 additions and 66 deletions

View File

@@ -2,7 +2,7 @@ MEMORY
{
ZP: start = $0, size = $100, type = rw, define = yes;
KERNEL: start = $1000, size = $7000, type = rw, define = yes;
SDRAM: start = $9000, size = $5000, type = rw, define = yes;
SDRAM: start = $9200, size = $4d00, type = rw, define = yes;
BOOTSECTOR: start = $8000, size = $200, type = rw, define = yes, file = "bootloader.bin";
BOOTLOADER: start = $8200, size = $1000, type = rw, define = yes, file = "boot2.bin";
ROM: start = $F000, size = $1000, file = %O;