1const std = @import("std"); 2const blah = @embedFile("bootloader.elf"); 3 4test { 5 comptime { 6 std.debug.assert(std.mem.eql(u8, blah[1..][0..3], "ELF")); 7 } 8}