package instructionF1 type InstructionF1 struct { opcode uint8 } func newInstructionF1(opcode uint8) InstructionF1 { return InstructionF1 { opcode: opcode } }