11 lines
184 B
Go
11 lines
184 B
Go
package instructionF1
|
|
|
|
type InstructionF1 struct {
|
|
opcode uint8
|
|
}
|
|
|
|
func newInstructionF1(opcode uint8) InstructionF1 {
|
|
return InstructionF1 {
|
|
opcode: opcode
|
|
}
|
|
}
|