mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
9 lines
169 B
Zig
9 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"));
|
|
}
|
|
}
|