1pub const cpuid = @import("cpuid.zig"); 2 3pub inline fn die() noreturn { 4 asm volatile ( 5 \\ mov $0xDEADDEADDEADDEAD, %%rax 6 \\ 1: hlt 7 \\ jmp 1b 8 ); 9 unreachable; 10}