diff options
| author | Rangi42 <remy.oukaour+rangi42@gmail.com> | 2023-11-20 17:53:19 -0500 |
|---|---|---|
| committer | Rangi42 <remy.oukaour+rangi42@gmail.com> | 2023-11-20 17:53:19 -0500 |
| commit | b066d3c9bc02cf4213173538d148cfabcc7212a8 (patch) | |
| tree | 9ce48f3d91afbbb8fbe9274de3c271d6fa602190 /home | |
| parent | Identify the unnamed HRAM variables and one WRAM label (#438) (diff) | |
| download | pokeyellow-b066d3c9bc02cf4213173538d148cfabcc7212a8.tar.gz pokeyellow-b066d3c9bc02cf4213173538d148cfabcc7212a8.tar.xz pokeyellow-b066d3c9bc02cf4213173538d148cfabcc7212a8.zip | |
Add `bigdw` and `dc` data macros
Diffstat (limited to 'home')
| -rw-r--r-- | home/fade.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/home/fade.asm b/home/fade.asm index f5ddf964..b67f4b1c 100644 --- a/home/fade.asm +++ b/home/fade.asm @@ -62,12 +62,12 @@ GBFadeDecCommon: jr nz, GBFadeDecCommon ret -FadePal1:: db %11111111, %11111111, %11111111 -FadePal2:: db %11111110, %11111110, %11111000 -FadePal3:: db %11111001, %11100100, %11100100 -FadePal4:: db %11100100, %11010000, %11100000 -; rBGP rOBP0 rOBP1 -FadePal5:: db %11100100, %11010000, %11100000 -FadePal6:: db %10010000, %10000000, %10010000 -FadePal7:: db %01000000, %01000000, %01000000 -FadePal8:: db %00000000, %00000000, %00000000 +FadePal1:: dc 3,3,3,3, 3,3,3,3, 3,3,3,3 +FadePal2:: dc 3,3,3,2, 3,3,3,2, 3,3,2,0 +FadePal3:: dc 3,3,2,1, 3,2,1,0, 3,2,1,0 +FadePal4:: dc 3,2,1,0, 3,1,0,0, 3,2,0,0 +; rBGP rOBP0 rOBP1 +FadePal5:: dc 3,2,1,0, 3,1,0,0, 3,2,0,0 +FadePal6:: dc 2,1,0,0, 2,0,0,0, 2,1,0,0 +FadePal7:: dc 1,0,0,0, 1,0,0,0, 1,0,0,0 +FadePal8:: dc 0,0,0,0, 0,0,0,0, 0,0,0,0 |
