From dfec136a86a073517e0653d2e8b70720a0028ff4 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Thu, 14 Apr 2022 23:50:02 -0300 Subject: [PATCH] chore: add ZigGBA Also get a ZigGBA implementation of first.gba working --- .gitmodules | 3 +++ build.zig | 33 +++------------------------------ lib/ZigGBA | 1 + src/first.zig | 18 ++++++++++++++++++ src/main.zig | 9 --------- 5 files changed, 25 insertions(+), 39 deletions(-) create mode 100644 .gitmodules create mode 160000 lib/ZigGBA create mode 100644 src/first.zig delete mode 100644 src/main.zig diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..8c1664e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "lib/ZigGBA"] + path = lib/ZigGBA + url = https://github.com/wendigojaeger/ZigGBA diff --git a/build.zig b/build.zig index 02746a9..763ab75 100644 --- a/build.zig +++ b/build.zig @@ -1,34 +1,7 @@ const std = @import("std"); +const GBABuilder = @import("lib/ZigGBA/GBA/builder.zig"); pub fn build(b: *std.build.Builder) void { - // Standard target options allows the person running `zig build` to choose - // what target to build for. Here we do not override the defaults, which - // means any target is allowed, and the default is native. Other options - // for restricting supported target set are available. - const target = b.standardTargetOptions(.{}); - - // Standard release options allow the person running `zig build` to select - // between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. - const mode = b.standardReleaseOptions(); - - const exe = b.addExecutable("test-roms", "src/main.zig"); - exe.setTarget(target); - exe.setBuildMode(mode); - exe.install(); - - const run_cmd = exe.run(); - run_cmd.step.dependOn(b.getInstallStep()); - if (b.args) |args| { - run_cmd.addArgs(args); - } - - const run_step = b.step("run", "Run the app"); - run_step.dependOn(&run_cmd.step); - - const exe_tests = b.addTest("src/main.zig"); - exe_tests.setTarget(target); - exe_tests.setBuildMode(mode); - - const test_step = b.step("test", "Run unit tests"); - test_step.dependOn(&exe_tests.step); + const exe = GBABuilder.addGBAExecutable(b, "first", "src/first.zig"); + _ = exe; } diff --git a/lib/ZigGBA b/lib/ZigGBA new file mode 160000 index 0000000..713a22f --- /dev/null +++ b/lib/ZigGBA @@ -0,0 +1 @@ +Subproject commit 713a22f6d0613052be932ec768f763d36830dcd9 diff --git a/src/first.zig b/src/first.zig new file mode 100644 index 0000000..8401577 --- /dev/null +++ b/src/first.zig @@ -0,0 +1,18 @@ +const GBA = @import("gba").GBA; +const Mode3 = @import("gba").Mode3; +const LCD = @import("gba").LCD; + +export var gameHeader linksection(".gbaheader") = GBA.Header.setup("FIRST", "AFSE", "00", 0); + +pub fn main() noreturn { + LCD.setupDisplayControl(.{ + .mode = .Mode3, + .backgroundLayer2 = .Show, + }); + + Mode3.setPixel(120, 80, GBA.toNativeColor(31, 0, 0)); + Mode3.setPixel(136, 80, GBA.toNativeColor(0, 31, 0)); + Mode3.setPixel(120, 96, GBA.toNativeColor(0, 0, 31)); + + while (true) {} +} diff --git a/src/main.zig b/src/main.zig deleted file mode 100644 index a7a7c95..0000000 --- a/src/main.zig +++ /dev/null @@ -1,9 +0,0 @@ -const std = @import("std"); - -pub fn main() anyerror!void { - std.log.info("All your codebase are belong to us.", .{}); -} - -test "basic test" { - try std.testing.expectEqual(10, 3 + 7); -}