mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
63ff28e94e
* non-asm macros can now take `const` and `call` parameters * register parameters to asm functions and macros can be given names if annotated explicitly
20 lines
350 B
Plaintext
20 lines
350 B
Plaintext
#pragma zilog_syntax
|
|
|
|
#if not(NEC_PC_88)
|
|
#warn pc88 module should be only used on PC-88 targets
|
|
#endif
|
|
|
|
asm void putchar(byte register(a) char) @$3e0d extern
|
|
|
|
inline void new_line() {
|
|
putchar(13)
|
|
putchar(10)
|
|
}
|
|
|
|
asm pointer readline() {
|
|
call $5f92
|
|
// TODO: if carry set, then STOP was pressed; should we care?
|
|
? inc hl
|
|
? ret
|
|
}
|