diff options
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -10,14 +10,13 @@ pub fn build(b: *std.Build) void { const exe = b.addExecutable(.{ .name = "stm32", - .root_source_file = b.path("src/main.zig"), + .root_source_file = b.path("src/startup.zig"), .target = target, //.optimize = .Debug, .optimize = .ReleaseSafe, .linkage = .static, }); - exe.addAssemblyFile(b.path("src/bootstrap.s")); exe.setLinkerScriptPath(b.path("link.ld")); b.installArtifact(exe); |