blob: 6b2908c1814a2037312f82f4ab42bc3ee54a8953 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
@ Copyright 2022 Gabriel Jensen.
@ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
@ If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
.syntax unified
.cpu arm7tdmi
.thumb
.globl ax_vsync
.func
.thumb_func
ax_vsync:
@ Set the constants:
ldr r0,.vcntaddr @ ax_i02 vcntaddr = 0x4000006u;
.waitvdrw: @ waitvdrw:;
@ Wait for the next VDraw:
ldrh r2,[r0] @ ax_i02 vcnt = *(ax_i01 *)vcntaddr;
cmp r2,0x0
beq .waitvblnk @ if (vcnt == 0x0u) goto waitvblnk;
b .waitvdrw @ goto waitvdrw;
.waitvblnk: @ waitvblnk:;
@ Wait for the VBlank:
ldrh r2,[r0] @ ax_i02 vcnt = *(ax_i01 *)vcntaddr;
cmp r2,0xA0
beq .ret @ if (vcnt == 0xA0u) goto ret;
b .waitvblnk @ goto waitvblnk;
.ret:
@ Return:
bx lr @ return;
.endfunc
.align
.vcntaddr:
.long 0x4000006
|