From: Luke Kenneth Casson Leighton Date: Tue, 28 Jun 2022 16:30:28 +0000 (+0100) Subject: add recognition of "sv." to pysvp64asm X-Git-Tag: sv_maxu_works-initial~307 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=20cda810bd467b127d3c14626704a5d38e3142cc;p=openpower-isa.git add recognition of "sv." to pysvp64asm --- diff --git a/src/openpower/sv/trans/svp64.py b/src/openpower/sv/trans/svp64.py index 2749d0a1..c7b01721 100644 --- a/src/openpower/sv/trans/svp64.py +++ b/src/openpower/sv/trans/svp64.py @@ -1373,7 +1373,7 @@ def asm_process(): macro = op[4:].split(",") (macro, value) = map(str.strip, macro) macros[macro] = value - if not op.startswith(tuple(CUSTOM_INSNS)): + if not op.startswith('sv.') and not op.startswith(tuple(CUSTOM_INSNS)): outfile.write(line) continue