Browse Source

Add internal padding instruction

master
Forest Belton 2 years ago
parent
commit
57a7406148
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      gbso/insn.py

+ 9
- 0
gbso/insn.py View File

@ -1070,3 +1070,12 @@ class SCF(Insn):
def pretty(self) -> str:
return "SCF"
@dataclass
class UNUSED(Insn):
def exec(self, cpu: CPU) -> None:
pass
def pretty(self) -> str:
return "UNUSED"

Loading…
Cancel
Save