You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Fix snake_case filenames
Renamed a bunch of files, most of them one-off functions, to better fit the general snake_case naming scheme. Also renamed some awfully long filenames.
This commit is contained in:
21
engine/gfx/load_push_oam.asm
Normal file
21
engine/gfx/load_push_oam.asm
Normal file
@@ -0,0 +1,21 @@
|
||||
WriteOAMDMACodeToHRAM:: ; 4031
|
||||
ld c, hTransferVirtualOAM - $ff00
|
||||
ld b, .PushOAMEnd - .PushOAM
|
||||
ld hl, .PushOAM
|
||||
.loop
|
||||
ld a, [hli]
|
||||
ld [$ff00+c], a
|
||||
inc c
|
||||
dec b
|
||||
jr nz, .loop
|
||||
ret
|
||||
|
||||
.PushOAM: ; 403f
|
||||
ld a, HIGH(wVirtualOAM)
|
||||
ld [rDMA], a
|
||||
ld a, NUM_SPRITE_OAM_STRUCTS
|
||||
.pushoam_loop
|
||||
dec a
|
||||
jr nz, .pushoam_loop
|
||||
ret
|
||||
.PushOAMEnd
|
||||
Reference in New Issue
Block a user