From: Luke Kenneth Casson Leighton Date: Sat, 22 Aug 2020 15:09:06 +0000 (+0100) Subject: add nor and nand to unit test X-Git-Tag: semi_working_ecp5~272^2~24 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3137d1d9e3ba8bcc45bbffceabef947494367f8f;p=soc.git add nor and nand to unit test --- diff --git a/src/soc/fu/logical/test/test_pipe_caller.py b/src/soc/fu/logical/test/test_pipe_caller.py index 9172cb09..3002a4ee 100644 --- a/src/soc/fu/logical/test/test_pipe_caller.py +++ b/src/soc/fu/logical/test/test_pipe_caller.py @@ -62,7 +62,7 @@ def set_alu_inputs(alu, dec2, sim): class LogicalTestCase(TestAccumulatorBase): def case_complement(self): - insns = ["andc", "orc"] + insns = ["andc", "orc", "nand", "nor"] for i in range(40): choice = random.choice(insns) lst = [f"{choice} 3, 1, 2"]