Added A2 'timer_seconds' dummy.

The implementation just always returns 0 thus actually disabling timeouts.
This commit is contained in:
Oliver Schmidt 2014-04-13 18:47:13 +02:00
parent 416f93bc0c
commit f1dfea1e7d

View File

@ -10,6 +10,7 @@
.export timer_init
.export timer_read
.export timer_seconds
.bss
@ -44,6 +45,10 @@ timer_read:
: ldax current_time_value
rts
timer_seconds:
lda #0
rts
; -- LICENSE FOR a2timer.s --