mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
26 lines
710 B
Lua
26 lines
710 B
Lua
%import textio
|
|
%import floats
|
|
%import string
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
str buffer = "???????????????????????????"
|
|
repeat {
|
|
txt.print("enter number: ")
|
|
void txt.input_chars(buffer)
|
|
txt.print("\nprog8's parse_f: ")
|
|
float value = floats.parse_f(buffer)
|
|
floats.print_f(value)
|
|
|
|
; floats.VAL_1 is defined as:
|
|
; romsub $fe09 = VAL_1(uword string @XY, ubyte length @A) clobbers(A,X,Y) -> float @FAC1
|
|
; txt.print("\nrom val_1: ")
|
|
; value = floats.VAL_1(buffer, string.length(buffer))
|
|
; floats.print_f(value)
|
|
txt.nl()
|
|
}
|
|
}
|
|
}
|