diff options
Diffstat (limited to 'agbx/source/gfx/flip.s')
-rw-r--r-- | agbx/source/gfx/flip.s | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/agbx/source/gfx/flip.s b/agbx/source/gfx/flip.s index 95f59a6..887377d 100644 --- a/agbx/source/gfx/flip.s +++ b/agbx/source/gfx/flip.s @@ -1,6 +1,6 @@ @ 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/. +@ 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 @@ -16,18 +16,18 @@ ax_flip: @ Get the current value of dispcnt: - ldr r0,.dispcntaddr @ ax_i20 dispcntaddr = 0x4000000u; - ldrh r1,[r0] @ ax_i10 dispcnt = *(ax_i10 *)dispcntaddr; + ldr r0,.dispcntaddr @ ax_i02 dispcntaddr = 0x4000000u; + ldrh r1,[r0] @ ax_i01 dispcnt = *(ax_i01 *)dispcntaddr; @ XOR bit five: movs r2,0b10000 eors r1,r2 @ dispcnt ^= 0b10000u; @ Save dispcnt: - strh r1,[r0] @ *(ax_i10 *)dispcntaddr = dispcnt; + strh r1,[r0] @ *(ax_i01 *)dispcntaddr = dispcnt; @ Get the address of the video bank: - b __ax_getvbnk @ ax_i20 vaddr = __ax_getvbnk(); + b __ax_getvbnk @ ax_i02 vaddr = __ax_getvbnk(); bx lr @ return vaddr; |