mirror of
https://github.com/irmen/prog8.git
synced 2024-11-02 22:04:40 +00:00
de06353194
some programs are now 100% source compatible between C64 and Cx16 targets! import libraries have been rena;med
60 lines
1.3 KiB
Lua
60 lines
1.3 KiB
Lua
; CommanderX16 text datetime example!
|
|
|
|
%target cx16
|
|
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
cx16.r0 = mkword(8, 2020 - 1900)
|
|
cx16.r1 = mkword(19, 27)
|
|
cx16.r2 = mkword(0, 16)
|
|
cx16.r3 = 0
|
|
cx16.clock_set_date_time()
|
|
txt.lowercase()
|
|
|
|
repeat {
|
|
c64.CHROUT(19) ; HOME
|
|
txt.print("\n yyyy-mm-dd HH:MM:SS.jj\n\n")
|
|
cx16.clock_get_date_time()
|
|
c64.CHROUT(' ')
|
|
print_date()
|
|
c64.CHROUT(' ')
|
|
print_time()
|
|
}
|
|
}
|
|
|
|
sub print_date() {
|
|
txt.print_uw(1900 + lsb(cx16.r0))
|
|
c64.CHROUT('-')
|
|
if msb(cx16.r0) < 10
|
|
c64.CHROUT('0')
|
|
txt.print_ub(msb(cx16.r0))
|
|
c64.CHROUT('-')
|
|
if lsb(cx16.r1) < 10
|
|
c64.CHROUT('0')
|
|
txt.print_ub(lsb(cx16.r1))
|
|
}
|
|
|
|
sub print_time() {
|
|
if msb(cx16.r1) < 10
|
|
c64.CHROUT('0')
|
|
txt.print_ub(msb(cx16.r1))
|
|
c64.CHROUT(':')
|
|
if lsb(cx16.r2) < 10
|
|
c64.CHROUT('0')
|
|
txt.print_ub(lsb(cx16.r2))
|
|
c64.CHROUT(':')
|
|
if msb(cx16.r2) < 10
|
|
c64.CHROUT('0')
|
|
txt.print_ub(msb(cx16.r2))
|
|
c64.CHROUT('.')
|
|
if lsb(cx16.r3) < 10
|
|
c64.CHROUT('0')
|
|
txt.print_ub(lsb(cx16.r3))
|
|
}
|
|
}
|
|
|