mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Merge pull request #480 from phs/phs/docs-typo
At most 256 bytes will be reserved
This commit is contained in:
commit
4cfa3e6f92
@ -1636,7 +1636,7 @@ either a string or an expression.
|
|||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
; Reserve space for the larger of two data blocks
|
; Reserve space for the larger of two data blocks
|
||||||
savearea: .max (.sizeof (foo), .sizeof (bar))
|
savearea: .res .max (.sizeof (foo), .sizeof (bar))
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
See: <tt><ref id=".MIN" name=".MIN"></tt>
|
See: <tt><ref id=".MIN" name=".MIN"></tt>
|
||||||
@ -1695,8 +1695,8 @@ either a string or an expression.
|
|||||||
Example:
|
Example:
|
||||||
|
|
||||||
<tscreen><verb>
|
<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)
|
savearea: .res .min (.sizeof (foo), 256)
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
See: <tt><ref id=".MAX" name=".MAX"></tt>
|
See: <tt><ref id=".MAX" name=".MAX"></tt>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user