summaryrefslogtreecommitdiff
path: root/configs/test.py
blob: ea0e63a6148a0231a95d17158d35dafad39693f2 (plain)
1
2
3
4
5
6
7
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)