diff options
Diffstat (limited to 'configs/test.py')
-rw-r--r-- | configs/test.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configs/test.py b/configs/test.py new file mode 100644 index 000000000..ea0e63a61 --- /dev/null +++ b/configs/test.py @@ -0,0 +1,8 @@ +from m5 import * +AddToPath('/z/stever/bk/m5-test') +import Benchmarks + +mem = PhysicalMemory() +cpu = SimpleCPU(workload=Benchmarks.HelloWorld(), mem=mem) +system = System(physmem=mem, cpu=cpu) +root = Root(system=system) |