Skip to content

Commit

Permalink
update SPC files
Browse files Browse the repository at this point in the history
  • Loading branch information
LADSoft committed Jul 21, 2024
1 parent 15f37a6 commit d255325
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/dlhex/hex.spc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ partition {
partition {
overlay {
region {} code [ align = 2];
region {} vsc* [ align = 8, roundsize = 4];
region {} const [ align = 4];
region {} string [ align = 2];
} ROM;
Expand All @@ -15,7 +16,9 @@ partition {
overlay {
RAMDATA = $;
region {} data [ align = 4];
region {} vsd* [ align = 8, roundsize = 4];
region {} bss [ align = 4];
region {} vsb* [ align = 8, roundsize = 4];
} RAM ;
} pt2 [addr=RAMBASE];

Expand Down
1 change: 1 addition & 0 deletions src/dlle/le.spc
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ partition {
overlay {
_BSSSTART = $;
region {} bss [ align = 8, roundsize = 4];
region {} vsb* [ align = 8, roundsize = 4];
_BSSEND = $;
_BSSSIZE = _BSSEND - _BSSSTART;
} .bss ;
Expand Down
1 change: 1 addition & 0 deletions src/dlpm/pm.spc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ partition {
INITSIZE = $ - RAMBASE;
_BSSSTART = $;
region {} bss [ align = 8, roundsize = 4];
region {} vsb* [ align = 8, roundsize = 4];
_BSSEND = $;
STACKBASE = $;
STACKTOP = STACKBASE + STACKSIZE;
Expand Down

0 comments on commit d255325

Please sign in to comment.