Skip to content

Commit

Permalink
fix warnings on new SDCC versions
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Apr 2, 2023
1 parent 00f7268 commit a6dd910
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/platform_gb/himem.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@

#include <gbdk/platform.h>

static volatile SFR AT(0xA0) temp1; // used in VBLANK
static volatile SFR AT(0xA1) temp2; // used in VBLANK
static volatile SFR AT(0xA2) temp3; // used in VBLANK
static volatile SFR AT(0xA3) temp4; // used in VBLANK
static volatile SFR AT(0xA4) temp5; // used in VBLANK
static volatile SFR AT(0xA5) ly_bank_switch_mirror;
static volatile SFR AT(0xA6) zoo_stat_count;
static volatile SFR AT(0xA7) temp6; // NOT used in VBLANK
static volatile SFR AT(0xA8) ly_offset_mirror;
static volatile SFR AT(0xA9) temp7; // NOT used in VBLANK
static volatile SFR AT(0xAA) temp8; // NOT used in VBLANK
static volatile SFR AT(0xFFA0) temp1; // used in VBLANK
static volatile SFR AT(0xFFA1) temp2; // used in VBLANK
static volatile SFR AT(0xFFA2) temp3; // used in VBLANK
static volatile SFR AT(0xFFA3) temp4; // used in VBLANK
static volatile SFR AT(0xFFA4) temp5; // used in VBLANK
static volatile SFR AT(0xFFA5) ly_bank_switch_mirror;
static volatile SFR AT(0xFFA6) zoo_stat_count;
static volatile SFR AT(0xFFA7) temp6; // NOT used in VBLANK
static volatile SFR AT(0xFFA8) ly_offset_mirror;
static volatile SFR AT(0xFFA9) temp7; // NOT used in VBLANK
static volatile SFR AT(0xFFAA) temp8; // NOT used in VBLANK

#endif

0 comments on commit a6dd910

Please sign in to comment.