mirror of
https://github.com/irmen/prog8.git
synced 2024-12-25 23:29:55 +00:00
clean test.p8
This commit is contained in:
parent
a1c658274d
commit
9898791771
@ -1,70 +1,10 @@
|
||||
%import textio
|
||||
%zeropage dontuse
|
||||
%import test_stack
|
||||
%zeropage basicsafe
|
||||
|
||||
main {
|
||||
|
||||
sub start() {
|
||||
uword v
|
||||
v = test.get_value1()
|
||||
txt.print_uw(v)
|
||||
txt.nl()
|
||||
v = test.get_value2()
|
||||
txt.print_uw(v)
|
||||
txt.nl()
|
||||
v = test.get_value3()
|
||||
txt.print_uw(v)
|
||||
txt.nl()
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
v = test.get_value4()
|
||||
txt.print_uw(v)
|
||||
txt.nl()
|
||||
v = test.get_value5()
|
||||
txt.print_uw(v)
|
||||
txt.nl()
|
||||
v = test.get_value6()
|
||||
txt.print_uw(v)
|
||||
txt.nl()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
test {
|
||||
uword[] arr = [1111,2222,3333]
|
||||
uword value = 9999
|
||||
|
||||
sub get_value1() -> uword {
|
||||
return &value
|
||||
}
|
||||
sub get_value2() -> uword {
|
||||
return arr[2]
|
||||
}
|
||||
sub get_value3() -> ubyte {
|
||||
return @($c000)
|
||||
}
|
||||
sub get_value4() -> uword {
|
||||
return value
|
||||
}
|
||||
sub get_value5() -> uword {
|
||||
return $c000
|
||||
}
|
||||
sub get_value6() -> uword {
|
||||
return "string"
|
||||
txt.print("ok")
|
||||
test_stack.test()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user