chore: panic on read from BIOS

GBA Bios requires a lot of implemented features, so we're ignoring it
for now
This commit is contained in:
Rekai Nyangadzayi Musuka 2022-01-02 14:57:59 -06:00
parent 1c42d1795a
commit eb37d73cb2
1 changed files with 3 additions and 0 deletions

View File

@ -17,14 +17,17 @@ pub const Bios = struct {
}
pub inline fn get32(self: *const @This(), idx: usize) u32 {
std.debug.panic("[BIOS] TODO: BIOS is not implemented", .{});
return (@as(u32, self.buf[idx + 3]) << 24) | (@as(u32, self.buf[idx + 2]) << 16) | (@as(u32, self.buf[idx + 1]) << 8) | (@as(u32, self.buf[idx]));
}
pub inline fn get16(self: *const @This(), idx: usize) u16 {
std.debug.panic("[BIOS] TODO: BIOS is not implemented", .{});
return (@as(u16, self.buf[idx + 1]) << 8) | @as(u16, self.buf[idx]);
}
pub inline fn get8(self: *const @This(), idx: usize) u8 {
std.debug.panic("[BIOS] TODO: BIOS is not implemented", .{});
return self.buf[idx];
}
};