mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 15:05:10 +00:00
14 lines
258 B
ArmAsm
14 lines
258 B
ArmAsm
|
; implementation of __clocks_per_sec for C64
|
||
|
; CC65's C64 runtime library doesn't provide this function
|
||
|
; this file provides a version in order that clk_timer.s works without 'ifdefs'
|
||
|
|
||
|
.export __clocks_per_sec
|
||
|
|
||
|
.code
|
||
|
|
||
|
__clocks_per_sec:
|
||
|
lda #60
|
||
|
rts
|
||
|
|
||
|
.end
|