started op table

This commit is contained in:
radumaco
2025-04-19 22:27:52 +02:00
parent 28243ac5d5
commit 8a15b8645f

View File

@@ -1,7 +1,5 @@
package cpu package cpu
type operation func(byte)
var OpTable = [256]func(context op_context){ var OpTable = [256]func(context op_context){
Noop, //0x00 Noop, //0x00
LDBCd16, //0x01 LDBCd16, //0x01
@@ -11,6 +9,3 @@ var OpTable = [256]func(context op_context){
DECB, //0x05 DECB, //0x05
LD8B, //0x06 LD8B, //0x06
} }
func (cpu *CPU_struct) execute(op byte, addr uint) {
}