update to latest zig, remove silkdot
This commit is contained in:
parent
9257ce6074
commit
1f41e5da8e
6 changed files with 29 additions and 115 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -9,6 +9,7 @@
|
||||||
# Cheers!
|
# Cheers!
|
||||||
# -andrewrk
|
# -andrewrk
|
||||||
|
|
||||||
|
.zig-cache/
|
||||||
zig-cache/
|
zig-cache/
|
||||||
zig-out/
|
zig-out/
|
||||||
/release/
|
/release/
|
||||||
|
|
37
build.zig
37
build.zig
|
@ -4,27 +4,16 @@ pub fn build(b: *std.Build) void {
|
||||||
const target = b.standardTargetOptions(.{});
|
const target = b.standardTargetOptions(.{});
|
||||||
const optimize = b.standardOptimizeOption(.{});
|
const optimize = b.standardOptimizeOption(.{});
|
||||||
|
|
||||||
const silkdot = b.dependency("silkdot", .{
|
const exe_mod = b.createModule(.{
|
||||||
.target = target,
|
|
||||||
.optimize = optimize,
|
|
||||||
});
|
|
||||||
|
|
||||||
// const lib = b.addStaticLibrary(.{
|
|
||||||
// .name = "uzn",
|
|
||||||
// .root_source_file = b.path("src/root.zig"),
|
|
||||||
// .target = target,
|
|
||||||
// .optimize = optimize,
|
|
||||||
// });
|
|
||||||
|
|
||||||
// b.installArtifact(lib);
|
|
||||||
|
|
||||||
const exe = b.addExecutable(.{
|
|
||||||
.name = "uzn",
|
|
||||||
.root_source_file = b.path("src/main.zig"),
|
.root_source_file = b.path("src/main.zig"),
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
exe.root_module.addImport("silkdot", silkdot.module("silkdot"));
|
|
||||||
|
const exe = b.addExecutable(.{
|
||||||
|
.name = "uzn",
|
||||||
|
.root_module = exe_mod,
|
||||||
|
});
|
||||||
b.installArtifact(exe);
|
b.installArtifact(exe);
|
||||||
|
|
||||||
const run_cmd = b.addRunArtifact(exe);
|
const run_cmd = b.addRunArtifact(exe);
|
||||||
|
@ -32,22 +21,16 @@ pub fn build(b: *std.Build) void {
|
||||||
if (b.args) |args| {
|
if (b.args) |args| {
|
||||||
run_cmd.addArgs(args);
|
run_cmd.addArgs(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
const run_step = b.step("run", "Run the app");
|
const run_step = b.step("run", "Run the app");
|
||||||
run_step.dependOn(&run_cmd.step);
|
run_step.dependOn(&run_cmd.step);
|
||||||
|
|
||||||
// const lib_unit_tests = b.addTest(.{
|
|
||||||
// .root_source_file = b.path("src/root.zig"),
|
|
||||||
// .target = target,
|
|
||||||
// .optimize = optimize,
|
|
||||||
// });
|
|
||||||
// const run_lib_unit_tests = b.addRunArtifact(lib_unit_tests);
|
|
||||||
const exe_unit_tests = b.addTest(.{
|
const exe_unit_tests = b.addTest(.{
|
||||||
.root_source_file = b.path("src/main.zig"),
|
.root_module = exe_mod,
|
||||||
.target = target,
|
|
||||||
.optimize = optimize,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
|
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
|
||||||
|
|
||||||
const test_step = b.step("test", "Run unit tests");
|
const test_step = b.step("test", "Run unit tests");
|
||||||
// test_step.dependOn(&run_lib_unit_tests.step);
|
|
||||||
test_step.dependOn(&run_exe_unit_tests.step);
|
test_step.dependOn(&run_exe_unit_tests.step);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,70 +1,11 @@
|
||||||
.{
|
.{
|
||||||
.name = "uzn",
|
.name = "uzn",
|
||||||
// This is a [Semantic Version](https://semver.org/).
|
|
||||||
// In a future version of Zig it will be used for package deduplication.
|
|
||||||
.version = "0.0.0",
|
.version = "0.0.0",
|
||||||
|
.minimum_zig_version = "0.14.0",
|
||||||
// This field is optional.
|
.dependencies = .{},
|
||||||
// This is currently advisory only; Zig does not yet do anything
|
|
||||||
// with this value.
|
|
||||||
//.minimum_zig_version = "0.11.0",
|
|
||||||
|
|
||||||
// This field is optional.
|
|
||||||
// Each dependency must either provide a `url` and `hash`, or a `path`.
|
|
||||||
// `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
|
|
||||||
// Once all dependencies are fetched, `zig build` no longer requires
|
|
||||||
// internet connectivity.
|
|
||||||
.dependencies = .{
|
|
||||||
// See `zig fetch --save <url>` for a command-line interface for adding dependencies.
|
|
||||||
//.example = .{
|
|
||||||
// // When updating this field to a new URL, be sure to delete the corresponding
|
|
||||||
// // `hash`, otherwise you are communicating that you expect to find the old hash at
|
|
||||||
// // the new URL.
|
|
||||||
// .url = "https://example.com/foo.tar.gz",
|
|
||||||
//
|
|
||||||
// // This is computed from the file contents of the directory of files that is
|
|
||||||
// // obtained after fetching `url` and applying the inclusion rules given by
|
|
||||||
// // `paths`.
|
|
||||||
// //
|
|
||||||
// // This field is the source of truth; packages do not come from a `url`; they
|
|
||||||
// // come from a `hash`. `url` is just one of many possible mirrors for how to
|
|
||||||
// // obtain a package matching this `hash`.
|
|
||||||
// //
|
|
||||||
// // Uses the [multihash](https://multiformats.io/multihash/) format.
|
|
||||||
// .hash = "...",
|
|
||||||
//
|
|
||||||
// // When this is provided, the package is found in a directory relative to the
|
|
||||||
// // build root. In this case the package's hash is irrelevant and therefore not
|
|
||||||
// // computed. This field and `url` are mutually exclusive.
|
|
||||||
// .path = "foo",
|
|
||||||
|
|
||||||
// // When this is set to `true`, a package is declared to be lazily
|
|
||||||
// // fetched. This makes the dependency only get fetched if it is
|
|
||||||
// // actually used.
|
|
||||||
// .lazy = false,
|
|
||||||
//},
|
|
||||||
.silkdot = .{
|
|
||||||
.path = "../silkdot/",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
// Specifies the set of files and directories that are included in this package.
|
|
||||||
// Only files and directories listed here are included in the `hash` that
|
|
||||||
// is computed for this package.
|
|
||||||
// Paths are relative to the build root. Use the empty string (`""`) to refer to
|
|
||||||
// the build root itself.
|
|
||||||
// A directory listed here means that all files within, recursively, are included.
|
|
||||||
.paths = .{
|
.paths = .{
|
||||||
// This makes *all* files, recursively, included in this package. It is generally
|
"build.zig",
|
||||||
// better to explicitly list the files and directories instead, to insure that
|
"build.zig.zon",
|
||||||
// fetching from tarballs, file system paths, and version control all result
|
"src",
|
||||||
// in the same contents hash.
|
|
||||||
"",
|
|
||||||
// For example...
|
|
||||||
//"build.zig",
|
|
||||||
//"build.zig.zon",
|
|
||||||
//"src",
|
|
||||||
//"LICENSE",
|
|
||||||
//"README.md",
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
18
flake.lock
generated
18
flake.lock
generated
|
@ -5,11 +5,11 @@
|
||||||
"systems": "systems"
|
"systems": "systems"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1705309234,
|
"lastModified": 1731533236,
|
||||||
"narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
|
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "flake-utils",
|
"repo": "flake-utils",
|
||||||
"rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
|
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -20,11 +20,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1706063522,
|
"lastModified": 1736817698,
|
||||||
"narHash": "sha256-o1m9en7ovSjyktXgX3n/6GJEwG06WYa/9Mfx5hTTf5g=",
|
"narHash": "sha256-1m+JP9RUsbeLVv/tF1DX3Ew9Vl/fatXnlh/g5k3jcSk=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "95c1439b205d507f3cb88aae76e02cd6a01ac504",
|
"rev": "2b1fca3296ddd1602d2c4f104a4050e006f4b0cb",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -59,11 +59,11 @@
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1713576181,
|
"lastModified": 1740793510,
|
||||||
"narHash": "sha256-vYvot66I7+58YjWaQldcZfNh4H2Mj2eE+PpYTjncBac=",
|
"narHash": "sha256-Jy/2/jTaoMXphijdV7v0zHc/ckBvz4ooYSKMdq54Sik=",
|
||||||
"owner": "Cloudef",
|
"owner": "Cloudef",
|
||||||
"repo": "zig2nix",
|
"repo": "zig2nix",
|
||||||
"rev": "59edca8316d1c395ac05474489b8ea9f26ebd53c",
|
"rev": "6bd6fa7031ca0836490ccfcdc8414dd7fb12cfb5",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
13
src/main.zig
13
src/main.zig
|
@ -1,5 +1,4 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const silkdot = @import("silkdot");
|
|
||||||
|
|
||||||
const Uxn = @import("uxn.zig");
|
const Uxn = @import("uxn.zig");
|
||||||
|
|
||||||
|
@ -22,22 +21,10 @@ pub fn main() !void {
|
||||||
var uxn = Uxn{ .pc = 0x100 };
|
var uxn = Uxn{ .pc = 0x100 };
|
||||||
@memcpy(uxn.mem.m[0x100 .. rom.len + 0x100], rom);
|
@memcpy(uxn.mem.m[0x100 .. rom.len + 0x100], rom);
|
||||||
|
|
||||||
// var term = try silkdot.Terminal.init(allocator);
|
|
||||||
// defer term.deinit();
|
|
||||||
|
|
||||||
var running = true;
|
var running = true;
|
||||||
while (running) {
|
while (running) {
|
||||||
// const events = try term.getEvents();
|
|
||||||
// defer allocator.free(events);
|
|
||||||
// for (events) |ev| switch (ev) {
|
|
||||||
// .keyboard => {
|
|
||||||
// if (ev.keyboard.code == 'q') running = false;
|
|
||||||
// },
|
|
||||||
// else => {},
|
|
||||||
// };
|
|
||||||
std.debug.print("{any} {X}\n", .{ uxn.pc, uxn.mem.m[uxn.pc] });
|
std.debug.print("{any} {X}\n", .{ uxn.pc, uxn.mem.m[uxn.pc] });
|
||||||
if (uxn.eval()) running = false;
|
if (uxn.eval()) running = false;
|
||||||
// try term.draw();
|
|
||||||
}
|
}
|
||||||
} else return error.NoRom;
|
} else return error.NoRom;
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,13 +54,13 @@ const Stack = struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn pop(self: *Stack, comptime T: type) T {
|
pub fn pop(self: *Stack, comptime T: type) T {
|
||||||
self.sp -%= @intCast(@divExact(@typeInfo(T).Int.bits, 8));
|
self.sp -%= @intCast(@divExact(@typeInfo(T).int.bits, 8));
|
||||||
return self.peek(T);
|
return self.peek(T);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn push(self: *Stack, comptime T: type, v: T) void {
|
pub fn push(self: *Stack, comptime T: type, v: T) void {
|
||||||
self.poke(T, v);
|
self.poke(T, v);
|
||||||
self.sp +%= @intCast(@divExact(@typeInfo(T).Int.bits, 8));
|
self.sp +%= @intCast(@divExact(@typeInfo(T).int.bits, 8));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -458,6 +458,8 @@ fn jsr(self: *Uxn, stack: *Stack, comptime T: type, comptime keep: bool) void {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// this one uses a bool instead of a *Stack, because it needs access to both stacks
|
||||||
|
// TODO now that I think about it, just use a bool everywhere
|
||||||
fn sth(self: *Uxn, comptime swap: bool, comptime T: type, comptime keep: bool) void {
|
fn sth(self: *Uxn, comptime swap: bool, comptime T: type, comptime keep: bool) void {
|
||||||
var src = if (swap) self.rs else self.ws;
|
var src = if (swap) self.rs else self.ws;
|
||||||
var dst = if (swap) self.ws else self.rs;
|
var dst = if (swap) self.ws else self.rs;
|
||||||
|
|
Loading…
Add table
Reference in a new issue