diff options
Diffstat (limited to 'instructions.go')
-rw-r--r-- | instructions.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/instructions.go b/instructions.go index 46a0923..59daa3a 100644 --- a/instructions.go +++ b/instructions.go @@ -487,6 +487,14 @@ func InstructionSetNew() InstructionSet { }, }, } + result["DBG"] = []InstructionParams{ + { + Types: []ParamType{}, + Assembler: func(_ uint16, args []uint16) ([]byte, error) { + return []byte{0b11010011}, nil + }, + }, + } return result } |