started up asm

This commit is contained in:
aljazbrodar. 2025-12-18 13:49:58 +01:00
parent ef273790b8
commit acce30cea1
45 changed files with 1167 additions and 728 deletions

View file

@ -0,0 +1,26 @@
package instructionSIC
type InstructionSIC struct {
opcode uint8
n bool
i bool
x bool
b bool
p bool
e bool
offset uint16
}
func newInstructionSIC(opcode uint8, n bool, i bool, x bool, b bool, p bool, e bool, offset uint16) InstructionSIC {
return InstructionSIC{
opcode: opcode,
n: n,
i: i,
x: x,
b: b,
p: p,
e: e,
offset: offset
}
}