chore: update dependencies

This commit is contained in:
Rekai Nyangadzayi Musuka 2023-04-02 20:59:37 -05:00
parent 1d8b21d6b4
commit a66428f24e
3 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit cc3b023f50e7b9ad690f1047a19a50feff4d1301
Subproject commit 37f4ba9e31bea895fa19ef8b90d1f51111e52e67

@ -1 +1 @@
Subproject commit 6310cbd57684d62c4fb6ac73e0fa9883fab402c8
Subproject commit ab69ef2db44b6c4b7f00283d52d38fbe71d16c42

View File

@ -86,7 +86,7 @@ pub fn main() void {
bus.init(allocator, &scheduler, &cpu, paths) catch |e| exitln("failed to init zba bus: {}", .{e});
defer bus.deinit();
if (config.config().guest.skip_bios or result.args.skip or paths.bios == null) {
if (config.config().guest.skip_bios or result.args.skip != 0 or paths.bios == null) {
cpu.fastBoot();
}
@ -101,7 +101,7 @@ pub fn main() void {
var items: [0x100]u8 = undefined;
var channel = TwoWayChannel.init(&items);
if (result.args.gdb) {
if (result.args.gdb != 0) {
const Server = @import("gdbstub").Server;
const EmuThing = @import("core/emu.zig").EmuThing;