mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 04:44:47 +01: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"));
|
|
}
|
|
}
|