1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-04-04 22:29:32 +00:00

Clarify console output behaviour

This commit is contained in:
Karol Stasiak 2019-06-24 21:26:08 +02:00
parent 663e38c264
commit 96b5918728
2 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,9 @@ Prints a single character.
Available for: all computer targets.
Note that this function obeys typical platform idiosyncrasies,
for example on CBM targets the quote character will toggle the quotation mode.
#### `void new_line()`
Moves the cursor to the next line.

View File

@ -9,6 +9,9 @@ It requires an implementation of `void putchar(byte a)` and therefore works only
Prints a string of length `len` located at address `str`.
Note that both this function and `putstrz` obey typical platform idiosyncrasies,
for example on CBM targets the quote character will toggle the quotation mode. This may be subject to change.
#### `void putstrz(pointer str)`
Prints a null-terminated string located at address `str`.