zba/src/main.zig

38 lines
1.0 KiB
Zig
Raw Normal View History

2021-12-29 21:09:00 +00:00
const std = @import("std");
2022-01-02 03:08:36 +00:00
const emu = @import("emu.zig");
2021-12-29 21:09:00 +00:00
const Scheduler = @import("scheduler.zig").Scheduler;
const Bus = @import("bus.zig").Bus;
2022-01-02 03:08:36 +00:00
const Arm7tdmi = @import("cpu.zig").Arm7tdmi;
2021-12-29 21:09:00 +00:00
pub fn main() anyerror!void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
const alloc = gpa.allocator();
2022-01-02 05:37:21 +00:00
defer _ = gpa.deinit();
2021-12-29 21:09:00 +00:00
2022-01-02 05:37:21 +00:00
const args = try std.process.argsAlloc(alloc);
defer std.process.argsFree(alloc, args);
const zba_args: []const []const u8 = args[1..];
if (zba_args.len == 0) {
std.log.err("Expected PATH to Gameboy Advance ROM as a CLI argument", .{});
return;
} else if (zba_args.len > 1) {
std.log.err("Too many CLI arguments were provided", .{});
return;
}
var bus = try Bus.init(alloc, zba_args[0]);
var scheduler = Scheduler.init(alloc);
var cpu = Arm7tdmi.init(&scheduler, &bus);
2021-12-29 21:09:00 +00:00
while (true) {
emu.runFrame(&scheduler, &cpu, &bus);
}
}
test "basic test" {
try std.testing.expectEqual(10, 3 + 7);
}