1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-06 01:29:31 +00:00

Reserve space in examples with .res

This commit is contained in:
Phil Smith 2017-09-02 19:25:49 -07:00
parent 929553dc8d
commit ded1c20190
No known key found for this signature in database
GPG Key ID: 90AB85FDE8B393E6

View File

@ -1636,7 +1636,7 @@ either a string or an expression.
<tscreen><verb>
; Reserve space for the larger of two data blocks
savearea: .max (.sizeof (foo), .sizeof (bar))
savearea: .res .max (.sizeof (foo), .sizeof (bar))
</verb></tscreen>
See: <tt><ref id=".MIN" name=".MIN"></tt>
@ -1696,7 +1696,7 @@ either a string or an expression.
<tscreen><verb>
; Reserve space for some data, but 256 bytes maximum
savearea: .min (.sizeof (foo), 256)
savearea: .res .min (.sizeof (foo), 256)
</verb></tscreen>
See: <tt><ref id=".MAX" name=".MAX"></tt>