Cross Reference: se.py
xref: /gem5/configs/example/se.py
  • Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /gem5/configs/example/
se.py revision 2424
14202Sbinkertn@umich.edufrom m5 import *
24202Sbinkertn@umich.edu
34202Sbinkertn@umich.educlass HelloWorld(LiveProcess):
44202Sbinkertn@umich.edu    executable = '../configs/test/hello'
54202Sbinkertn@umich.edu    cmd = 'hello'
64202Sbinkertn@umich.edu
74202Sbinkertn@umich.edumem = PhysicalMemory()
84202Sbinkertn@umich.educpu = SimpleCPU(workload=HelloWorld(), mem=mem)
94202Sbinkertn@umich.edusystem = System(physmem=mem, cpu=cpu)
104202Sbinkertn@umich.eduroot = Root(system=system)
114202Sbinkertn@umich.edu

Indexes created Thu Sep 26 06:36:22 EDT 2019