1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

At most 256 bytes will be reserved

This commit is contained in:
Phil Smith 2017-09-01 23:11:54 -07:00
parent 4aa19494f5
commit 929553dc8d
No known key found for this signature in database
GPG Key ID: 90AB85FDE8B393E6

View File

@ -1695,7 +1695,7 @@ either a string or an expression.
Example:
<tscreen><verb>
; Reserve space for some data, but 256 bytes minimum
; Reserve space for some data, but 256 bytes maximum
savearea: .min (.sizeof (foo), 256)
</verb></tscreen>