3dcb589ea4
--HG-- extra : convert_revision : 111af292373edebcd106938e76610f9ac4a6ce58
12 lines
324 B
Python
12 lines
324 B
Python
from m5 import *
|
|
|
|
class HelloWorld(AlphaLiveProcess):
|
|
executable = '../configs/test/hello'
|
|
cmd = 'hello'
|
|
|
|
magicbus = Bus()
|
|
mem = PhysicalMemory()
|
|
cpu = SimpleCPU(workload=HelloWorld(), mem=magicbus)
|
|
system = System(physmem=mem, cpu=cpu)
|
|
system.c1 = Connector(side_a=mem, side_b=magicbus)
|
|
root = Root(system=system)
|