dmgtris/src/time.asm

50 lines
1.1 KiB
NASM
Raw Normal View History

2023-10-21 15:28:38 +00:00
; DMGTRIS
; Copyright (C) 2023 - Randy Thiemann <randy.thiemann@gmail.com>
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <https://www.gnu.org/licenses/>.
2023-10-13 09:20:28 +00:00
IF !DEF(TIME_ASM)
DEF TIME_ASM EQU 1
2023-10-16 05:47:11 +00:00
INCLUDE "globals.asm"
2023-10-13 09:20:28 +00:00
SECTION "Time Variables", HRAM
2023-10-17 05:59:54 +00:00
hFrameCtr:: ds 1
2023-10-13 09:20:28 +00:00
hEvenFrame:: ds 1
SECTION "Time Functions", ROM0
TimeInit::
xor a, a
2023-10-18 01:06:22 +00:00
ldh [rTMA], a
2023-10-13 09:20:28 +00:00
ldh [hEvenFrame], a
2023-10-17 05:59:54 +00:00
ldh [hFrameCtr], a
2023-10-18 01:06:22 +00:00
ld a, TACF_262KHZ | TACF_START
ldh [rTAC], a
2023-10-13 09:20:28 +00:00
ret
HandleTimers::
2023-10-17 05:59:54 +00:00
ldh a, [hFrameCtr]
2023-10-13 09:20:28 +00:00
inc a
2023-10-17 05:59:54 +00:00
ldh [hFrameCtr], a
2023-10-13 09:20:28 +00:00
and 1
ldh [hEvenFrame], a
ret
ENDC