From 57a74061486ddeb65e157583038e4c050fc5cf97 Mon Sep 17 00:00:00 2001 From: Forest Belton <65484+forestbelton@users.noreply.github.com> Date: Sun, 25 Jul 2021 01:02:11 -0400 Subject: [PATCH] Add internal padding instruction --- gbso/insn.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gbso/insn.py b/gbso/insn.py index 0f061bf..07fd886 100644 --- a/gbso/insn.py +++ b/gbso/insn.py @@ -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"