started up asm
This commit is contained in:
parent
ef273790b8
commit
acce30cea1
45 changed files with 1167 additions and 728 deletions
25
ass3/zbirnik/code/instructionF4.go
Normal file
25
ass3/zbirnik/code/instructionF4.go
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
package instructionF4
|
||||
|
||||
type InstructionF4 struct {
|
||||
opcode uint8,
|
||||
n bool,
|
||||
i bool,
|
||||
x bool,
|
||||
b bool,
|
||||
p bool,
|
||||
e bool,
|
||||
offset uint32
|
||||
}
|
||||
|
||||
func newInstructionF4(opcode uint8, n bool, i bool, x bool, b bool, p bool, e bool, offset uint32) InstructionF4 {
|
||||
return InstructionF4{
|
||||
opcode: opcode,
|
||||
n: n,
|
||||
i: i,
|
||||
x: x,
|
||||
b: b,
|
||||
p: p,
|
||||
e: e,
|
||||
offset: offset
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue