mirror of
https://github.com/cc65/cc65.git
synced 2025-01-14 00:32:08 +00:00
put Atari 20-column note to where it belongs...
This commit is contained in:
parent
caa74b325d
commit
ded575c477
@ -726,6 +726,11 @@ for sectors 1 to 3, regardless of the type of diskette.
|
|||||||
The console I/O is speed optimized therefore support for XEP80 hardware
|
The console I/O is speed optimized therefore support for XEP80 hardware
|
||||||
or f80.com software is missing. Of course you may use stdio.h functions.
|
or f80.com software is missing. Of course you may use stdio.h functions.
|
||||||
|
|
||||||
|
<tt/cprintf/ targets a 40 character line. On a 20-column display this has
|
||||||
|
the unexpected effect of a blank line after your text. On such displays you can either
|
||||||
|
use for example <tt/gotoxy(20,0)/ to target the "next" line, or you can switch to <tt/write()/
|
||||||
|
function which does not have this side effect.
|
||||||
|
|
||||||
|
|
||||||
<sect>Technical details<label id="techdetail"><p>
|
<sect>Technical details<label id="techdetail"><p>
|
||||||
|
|
||||||
|
@ -7788,10 +7788,6 @@ format specifiers as <tt/vprintf/. <!-- <tt/<ref id="vprintf" name="vprintf">/.
|
|||||||
between <tt/\r/ and <tt/\n/.
|
between <tt/\r/ and <tt/\n/.
|
||||||
<item>The function is only available as fastcall function, so it may only be
|
<item>The function is only available as fastcall function, so it may only be
|
||||||
used in presence of a prototype.
|
used in presence of a prototype.
|
||||||
<item>cprintf targets a 40 character line. On a 20-column display this has
|
|
||||||
the unexpected effect of a blank line after your text. On such displays you can either
|
|
||||||
use for example gotoxy(20,0) to target the "next" line, or you can switch to write()
|
|
||||||
function which does not have this side effect.
|
|
||||||
</itemize>
|
</itemize>
|
||||||
<tag/Availability/cc65
|
<tag/Availability/cc65
|
||||||
<tag/See also/
|
<tag/See also/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user