diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-02-16 17:49:37 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-16 17:49:37 +0100 |
commit | cdd2d4eac475082078cf4a266dd6429d0d8c6379 (patch) | |
tree | e88f997be7e13dcbebd507fea8132880cc412201 /src/wram.asm | |
parent | 1082494d9886e99f2eab1d924ec4091a1a902055 (diff) |
Correct palette engine functions and more clean up
Diffstat (limited to 'src/wram.asm')
-rwxr-xr-x | src/wram.asm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/wram.asm b/src/wram.asm index 4431587..0a92ff2 100755 --- a/src/wram.asm +++ b/src/wram.asm @@ -355,8 +355,12 @@ wcade:: ; cade wcae2:: ; cae2 ds $e -wBufPalette:: ; caf0 - ds $80 +; temporal CGB palette data buffer to eventually save into BGPD or OBPD registers. +wBackgroundPalettesCGB:: ; caf0 + ds 8 * CGB_PAL_SIZE + +wObjectPalettesCGB:: ; cb30 + ds 8 * CGB_PAL_SIZE ds $4 |