Merge zizzer:/bk/newmem
[gem5.git] / configs / test / test.py
1 from m5 import *
2
3 class HelloWorld(AlphaLiveProcess):
4 executable = '../configs/test/hello'
5 cmd = 'hello'
6
7 mem = PhysicalMemory()
8 cpu = SimpleCPU(workload=HelloWorld(), mem=mem)
9 system = System(physmem=mem, cpu=cpu)
10 root = Root(system=system)