Page 1 of 1

Problem with Listing 5-15 (Listing 5-5-userStack)

Posted: Sat Mar 15, 2025 6:24 pm
by rhyde
Here's a quick correction to Listing5-14 (which appears as Listing5-5-UserStack in the on-line files).
The declaration of the user stack was:

Code: Select all

            .align      4
smallStk:   .fill       256, .-.
endSmallStk:
It really needs to be:

Code: Select all

            .align      4
smallStk:   .space       256, .-.   // .fill 256, 1, 0 also works
endSmallStk:
Cheers,
Randy Hyde