Parsing library for working with eBPF instructions and programs.
rust /* * mov R0, 0 * exit */ let instructions = [ Instruction::mov32(Register::R0, 0), Instruction::exit() ];
anyhow