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

A forum intended to support Randall Hyde's "Art of Arm Assembly" book.
Post Reply
rhyde
Site Admin
Posts: 56
Joined: Sun Dec 04, 2022 5:36 pm

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

Post 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
Attachments
Listing5-5-userStack.S.zip
(1000 Bytes) Downloaded 82 times
Post Reply