spo/ass3/zbirnik/code/instructionF1.go
2025-12-18 13:49:58 +01:00

11 lines
184 B
Go

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