inline fn bit(input: u32, offset: u5) bool
inline fn bit(input: u32, offset: u5) bool { return (input >> offset) & 1 != 0; }