From 33350abacfcf608c9a2ab89ac27b5b351e8a2db6 Mon Sep 17 00:00:00 2001 From: Ivan Kosarev Date: Tue, 23 Jul 2024 23:27:26 +0100 Subject: [PATCH] [Python][Disasm] Support '(c)' operands in 'in' instructions. --- z80/_disasm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/z80/_disasm.py b/z80/_disasm.py index 59bb087..bbce80a 100644 --- a/z80/_disasm.py +++ b/z80/_disasm.py @@ -189,6 +189,7 @@ class _Z80InstrBuilder(object): 'a': A, 'af': AF, 'af\'': AF2, + 'c': C, 'Cc': CF, 'Cm': M, 'Cnc': NC,