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

cc65-intern update minor change notes from greg-king5

This commit is contained in:
Brad Smith 2016-03-02 21:01:46 -05:00
parent fa5b0d88c5
commit 97e6a8c569

View File

@ -27,7 +27,7 @@ There are two calling conventions used in cc65:
<item><tt/cdecl/ - passes all parameters on the C-stack.
<p>
<item><tt/fastcall/ - passes the rightmost parameter in
registers <tt>A/X/sreg</tt> an all others on the C-stack.
registers <tt>A/X/sreg</tt> and all others on the C-stack.
<p>
</itemize>
@ -52,7 +52,7 @@ If the function is declared as fastcall, the rightmost argument will be loaded i
the <tt>A/X/sreg</tt> registers:
<itemize>
<item><tt/A/ - 8-bit parameter, or low byte of larger tyes<p>
<item><tt/A/ - 8-bit parameter, or low byte of larger types<p>
<item><tt/X/ - 16-bit high byte, or second byte of 32-bits<p>
<item><tt/sreg/ - Zeropage pseudo-register including high 2 bytes of 32-bit parameter<p>
</itemize>
@ -68,7 +68,7 @@ the <tt/Y/ register will contain the number of bytes pushed to the stack for thi
Example:
<tscreen><verb>
// C prototype
void foo(unsigned bar, unsigned char baz);
void cdecl foo(unsigned bar, unsigned char baz);
; C-stack layout within the function:
;