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
31 lines
596 B
Plaintext
31 lines
596 B
Plaintext
// Routines from C264 BASIC ROM
|
|
|
|
#if not(CBM_264)
|
|
#warn c264_basic module should be only used on C264-compatible targets
|
|
#endif
|
|
|
|
import c264_kernal
|
|
import err
|
|
|
|
// print a 16-bit number on the standard output
|
|
asm void putword_basic(word register(xa) num) @$A45F extern
|
|
|
|
alias putword = putword_basic!
|
|
|
|
asm void __readline_basic() @$885A extern
|
|
|
|
pointer readline_basic() {
|
|
__readline_basic()
|
|
return readline_out
|
|
}
|
|
|
|
alias readline = readline_basic!
|
|
|
|
const pointer readline_out = $200
|
|
|
|
inline word readword_basic() {
|
|
return strz2word(readline_basic())
|
|
}
|
|
|
|
alias readword = readword_basic!
|