prog8/examples/test.p8

40 lines
670 B
Plaintext
Raw Normal View History

%import textio
%import floats
%zeropage basicsafe
%import test_stack
2020-08-27 17:47:50 +00:00
main {
2020-10-09 20:47:42 +00:00
sub start() {
2020-11-09 22:57:50 +00:00
float fl
word ww
uword uw
byte bb
ubyte ub
2020-11-26 18:21:07 +00:00
str string1 = "irmen"
uword[] array = [1111,2222,3333]
2020-11-26 18:21:07 +00:00
uw = string1 as uword
txt.print_uwhex(uw,1)
txt.chrout('\n')
2020-11-26 18:21:07 +00:00
uw = array as uword
txt.print_uwhex(uw,1)
2020-11-24 21:16:50 +00:00
txt.chrout('\n')
2020-11-26 18:21:07 +00:00
uw = name() as uword
txt.print_uwhex(uw,1)
txt.chrout('\n')
2020-11-26 18:21:07 +00:00
uw = name()
txt.print_uwhex(uw,1)
txt.chrout('\n')
test_stack.test()
}
2020-11-26 18:21:07 +00:00
sub name() -> str {
return "irmen"
}
2020-08-27 17:47:50 +00:00
}