chore: move bitfield library to lib director
I'd presonally prefer to use a git submodule here but It doesn't quite seem like git submodules are possible for individual files. I'll have to check with FlorenceOS every once and a while to ensure that there are no lingering soundness issues with the library. Thanks to @N00byEdge for this wonderful library!
This commit is contained in:
parent
de9045fba3
commit
f09f814dc3
|
@ -12,6 +12,10 @@ pub fn build(b: *std.build.Builder) void {
|
||||||
const mode = b.standardReleaseOptions();
|
const mode = b.standardReleaseOptions();
|
||||||
|
|
||||||
const exe = b.addExecutable("zba", "src/main.zig");
|
const exe = b.addExecutable("zba", "src/main.zig");
|
||||||
|
|
||||||
|
// Bitfield type from FlorenceOS: https://github.com/FlorenceOS/
|
||||||
|
exe.addPackage(.{ .name = "bitfield", .path = .{ .path = "./lib/util/bitfield.zig" } });
|
||||||
|
|
||||||
exe.setTarget(target);
|
exe.setTarget(target);
|
||||||
exe.setBuildMode(mode);
|
exe.setBuildMode(mode);
|
||||||
exe.install();
|
exe.install();
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
// source + credit: https://github.com/FlorenceOS/Florence/blob/master/lib/util/bitfields.zig --
|
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
||||||
fn PtrCastPreserveCV(comptime T: type, comptime PtrToT: type, comptime NewT: type) type {
|
fn PtrCastPreserveCV(comptime T: type, comptime PtrToT: type, comptime NewT: type) type {
|
|
@ -1,6 +1,6 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const util = @import("util.zig");
|
const util = @import("util.zig");
|
||||||
const bitfield = @import("util/bitfield.zig");
|
const bitfield = @import("bitfield");
|
||||||
|
|
||||||
const Bus = @import("bus.zig").Bus;
|
const Bus = @import("bus.zig").Bus;
|
||||||
const Scheduler = @import("scheduler.zig").Scheduler;
|
const Scheduler = @import("scheduler.zig").Scheduler;
|
||||||
|
|
Loading…
Reference in New Issue