1
0
mirror of https://github.com/bobbimanners/emailler.git synced 2025-04-22 12:38:05 +00:00
emailler/apps/gettime.s
2021-05-28 17:29:20 -04:00

11 lines
155 B
ArmAsm

; Call ProDOS MLI GET_TIME call
; Bobbi 2021
.export _gettime
_gettime:
jsr $bf00 ; MLI
.byte $82 ; GET_TIME
.word $0000 ; Null param list
rts