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
23 lines
348 B
Plaintext
23 lines
348 B
Plaintext
|
|
#if not(MSX)
|
|
#warn msx module should be only used on MSX-compatible targets
|
|
#endif
|
|
|
|
#pragma zilog_syntax
|
|
|
|
asm void putchar(byte register(a) char) @$00a2 extern
|
|
|
|
inline void new_line() {
|
|
putchar(13)
|
|
putchar(10)
|
|
}
|
|
|
|
const pointer readline_out = $F55E
|
|
|
|
asm pointer readline() {
|
|
? ld hl, $F55D
|
|
call $00b1
|
|
? ld hl, $F55E
|
|
? ret
|
|
}
|