prog8/examples/test.p8

49 lines
1.2 KiB
Plaintext
Raw Normal View History

%import test_stack
%import textio
%import floats
%zeropage basicsafe
2020-12-08 00:02:38 +00:00
%option no_sysinit
main {
sub start () {
2021-01-02 16:50:08 +00:00
uword current_time
repeat {
current_time = c64.RDTIM16()
txt.print_uw(current_time)
txt.chrout('\n')
repeat 20000 {
current_time++
}
}
2021-01-02 16:50:08 +00:00
; found = strfind("irmen de jong", ' ')
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
; found = strfind(" irmen-de-jong", ' ')
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
; found = strfind("irmen-de-jong ", ' ')
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
; found = strfind("irmen-de-jong", ' ')
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
; found = strfinds("irmen de jong", "de")
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
; found = strfinds("irmen de jong", "irmen")
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
; found = strfinds("irmen de jong", "jong")
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
; found = strfinds("irmen de jong", "de456")
; txt.print_uwhex(found, 1)
; txt.chrout('\n')
}
2020-08-27 17:47:50 +00:00
}