Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
embed_generated_file
main.zig
pretty
plain
permalink
blame
history
•
8 lines
•
169 B
1
const std = @import("std");
2
const blah = @embedFile("bootloader.elf");
3
4
test {
5
comptime {
6
std.debug.assert(std.mem.eql(u8, blah[1..][0..3], "ELF"));
7
}
8
}