Skip to content

Commit

Permalink
Update SameBoot to support RGBDS 0.6.x, RGBDS 0.4.x support dropped. C…
Browse files Browse the repository at this point in the history
…loses #500, #501
  • Loading branch information
LIJI32 committed Oct 4, 2022
1 parent 5550727 commit c0966ce
Show file tree
Hide file tree
Showing 3 changed files with 379 additions and 308 deletions.
6 changes: 3 additions & 3 deletions BootROMs/cgb_boot.asm
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ FirstChecksumWithDuplicate:
ChecksumsEnd:

PalettePerChecksum:
palette_index: MACRO ; palette, flags
MACRO palette_index ; palette, flags
db ((\1)) | (\2) ; | $80 means game requires DMG boot tilemap
ENDM
palette_index 0, 0 ; Default Palette
Expand Down Expand Up @@ -433,10 +433,10 @@ Dups4thLetterArray:
; We assume the last three arrays fit in the same $100 byte page!

PaletteCombinations:
palette_comb: MACRO ; Obj0, Obj1, Bg
MACRO palette_comb ; Obj0, Obj1, Bg
db (\1) * 8, (\2) * 8, (\3) *8
ENDM
raw_palette_comb: MACRO ; Obj0, Obj1, Bg
MACRO raw_palette_comb ; Obj0, Obj1, Bg
db (\1) * 2, (\2) * 2, (\3) * 2
ENDM
palette_comb 4, 4, 29
Expand Down
Loading

0 comments on commit c0966ce

Please sign in to comment.