changed naming to have multiuple functions files for each row in the

optable
This commit is contained in:
radumacocian
2025-06-30 16:16:50 +02:00
parent a79014c657
commit de83a6e5b7
3 changed files with 24 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
package cpu
var OpTable = [256]func(context op_context){
Noop, //0x00
NOOP, //0x00
LDBCd16, //0x01
LDBCa, //0x02
INCBC, //0x03
@@ -17,4 +17,6 @@ var OpTable = [256]func(context op_context){
DECC, //0x0D
LDCd8, //0x0E
RRRCA, //0x0F
STOP, //0x10
}