4973a16b34
--HG-- extra : convert_revision : 96b5494b7d0b5ca702ac69cfa0bf8c4d44e1cc3b
11 lines
284 B
Python
11 lines
284 B
Python
from m5 import *
|
|
|
|
class HelloWorld(AlphaLiveProcess):
|
|
executable = '../configs/test/hello'
|
|
cmd = 'hello'
|
|
|
|
magicbus = Bus()
|
|
mem = PhysicalMemory(bus=magicbus)
|
|
cpu = SimpleCPU(workload=HelloWorld(), mem=magicbus)
|
|
system = System(physmem=mem, cpu=cpu)
|
|
root = Root(system=system)
|