mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
8 lines
169 B
Zig
8 lines
169 B
Zig
const std = @import("std");
|
|
const blah = @embedFile("bootloader.elf");
|
|
|
|
test {
|
|
comptime {
|
|
std.debug.assert(std.mem.eql(u8, blah[1..][0..3], "ELF"));
|
|
}
|
|
}
|