;--- SET PALETTE ------------------------------------------------------------

  ld a, 0
  ld b, 32
  ld hl, Palette_Table
Set_Palette_Loop:
  push bc
  ld b, (hl)
  inc hl
  ld c, (hl)
  inc hl
  ld d, (hl)
  inc hl
  call SetPalRGB
  pop bc

  inc a
  dec b
  jr nz, Set_Palette_Loop

