summaryrefslogtreecommitdiff
path: root/configs/test/test.py
blob: 86a44313a5121845bdd4c8a983d689537f5c01e4 (plain)
1
2
3
4
5
6
7
8
9
10
from m5 import *

class HelloWorld(AlphaLiveProcess):
    executable = '../configs/test/hello'
    cmd = 'hello'

mem = PhysicalMemory()
cpu = SimpleCPU(workload=HelloWorld(), mem=mem)
system = System(physmem=mem, cpu=cpu)
root = Root(system=system)