diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2012-03-08 02:10:03 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2012-03-08 02:10:03 -0800 |
commit | cda4c2d280e9c1becf3b4d0b6b384f63641c45ba (patch) | |
tree | b24c1614a16bbaa2bcec650f68b660f4ccede1d5 /tests/configs | |
parent | eb43883bef3960a9325f26e1925ca8325330173c (diff) | |
download | gem5-cda4c2d280e9c1becf3b4d0b6b384f63641c45ba.tar.xz |
Fix the SPARC fs regression by adding a call to createInterruptController.
Diffstat (limited to 'tests/configs')
-rw-r--r-- | tests/configs/t1000-simple-atomic.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/configs/t1000-simple-atomic.py b/tests/configs/t1000-simple-atomic.py index 217135bf0..7e94b5c98 100644 --- a/tests/configs/t1000-simple-atomic.py +++ b/tests/configs/t1000-simple-atomic.py @@ -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) |