Problem with Listing 5-15 (Listing 5-5-userStack)
Posted: Sat Mar 15, 2025 6:24 pm
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:
It really needs to be:
Cheers,
Randy Hyde
The declaration of the user stack was:
Code: Select all
.align 4
smallStk: .fill 256, .-.
endSmallStk:
Code: Select all
.align 4
smallStk: .space 256, .-. // .fill 256, 1, 0 also works
endSmallStk:
Randy Hyde