From: Luke Kenneth Casson Leighton Date: Wed, 24 Aug 2022 12:29:01 +0000 (+0100) Subject: fix annoying typo, comment-out asm_process() X-Git-Tag: sv_maxu_works-initial~116 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=13d2e019f850f1cfb1e8da4cf88841a877644925;p=openpower-isa.git fix annoying typo, comment-out asm_process() --- diff --git a/src/openpower/sv/trans/svp64.py b/src/openpower/sv/trans/svp64.py index fa830c7c..42b18afa 100644 --- a/src/openpower/sv/trans/svp64.py +++ b/src/openpower/sv/trans/svp64.py @@ -667,6 +667,7 @@ class SVP64Asm: if v30b_op_orig not in isa.instr: raise Exception("opcode %s of '%s' not supported" % + (v30b_op, insn)) if ldst_shift: # okaay we need to process the fields and make this: @@ -1543,4 +1544,8 @@ if __name__ == '__main__': ] isa = SVP64Asm(lst, macros=macros) log("list", list(isa)) - asm_process() + # running svp64.py is designed to test hard-coded lists + # (above) - which strictly speaking should all be unit tests. + # if you need to actually do assembler translation at the + # commandline use "pysvp64asm" - see setup.py + # XXX NO. asm_process()