ok imma stop using size_t at this point
This commit is contained in:
+3
-2
@@ -38,8 +38,8 @@ struct broadway {
|
||||
bool get_cr_bit(ircolib::u8 index, ircolib::u8 bit) { return (cr >> index * 4) & (1 << (4 - bit)); }
|
||||
|
||||
// bat registers indexes
|
||||
static constexpr std::size_t BAT_LOWER_OFFSET = 0;
|
||||
static constexpr std::size_t BAT_UPPER_OFFSET = 8;
|
||||
static constexpr ircolib::u32 BAT_LOWER_OFFSET = 0;
|
||||
static constexpr ircolib::u32 BAT_UPPER_OFFSET = 8;
|
||||
|
||||
std::array<ircolib::u32, 16> ibat, dbat;
|
||||
std::array<ircolib::u32, 32> gpr{};
|
||||
@@ -75,6 +75,7 @@ struct broadway {
|
||||
void stwu(ircolib::u32, mem &);
|
||||
void stbu(ircolib::u32, mem &);
|
||||
void sth(ircolib::u32, mem &);
|
||||
void lbz(ircolib::u32, mem &);
|
||||
void lwz(ircolib::u32, mem &);
|
||||
void lfd(ircolib::u32, mem &);
|
||||
void bclrx(ircolib::u32);
|
||||
|
||||
Reference in New Issue
Block a user