Fix the SPARC fs regression by adding a call to createInterruptController.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 8 Mar 2012 10:10:03 +0000 (02:10 -0800)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 8 Mar 2012 10:10:03 +0000 (02:10 -0800)
tests/configs/t1000-simple-atomic.py

index 217135bf050949b16cd03183f937d6d31d75a1b8..7e94b5c98467e124acfd2122b22d641c6e0db470 100644 (file)
@@ -34,6 +34,8 @@ import FSConfig
 cpu = AtomicSimpleCPU(cpu_id=0)
 system = FSConfig.makeSparcSystem('atomic')
 system.cpu = cpu
+# create the interrupt controller
+cpu.createInterruptController()
 cpu.connectAllPorts(system.membus)
 
 root = Root(full_system=True, system=system)