From: Luke Kenneth Casson Leighton Date: Wed, 8 Jul 2020 16:18:51 +0000 (+0100) Subject: add mtspr and bcctrl instructions to helloworld test X-Git-Tag: div_pipeline~155 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a4ce3f5e0f7f90aae2946f309abc227bc80c4e1e;p=soc.git add mtspr and bcctrl instructions to helloworld test --- diff --git a/src/soc/simulator/test_helloworld_sim.py b/src/soc/simulator/test_helloworld_sim.py index 93352c41..97d1e998 100644 --- a/src/soc/simulator/test_helloworld_sim.py +++ b/src/soc/simulator/test_helloworld_sim.py @@ -35,6 +35,8 @@ class HelloTestCases(FHDLTestCase): "rldicr 12,12,32,31", "oris 12,12,0", "ori 12,12,4116", + "mtspr 9, 12", # mtctr r12 + "bcctrl 20,0,0", # bctrl ] self.run_tst_program(Program(lst), [1,12])