diff options
Diffstat (limited to 'configs')
-rwxr-xr-x | configs/test/hello | bin | 0 -> 312176 bytes | |||
-rwxr-xr-x | configs/test/hello_mips | bin | 0 -> 623837 bytes | |||
-rw-r--r-- | configs/test/test.py | 10 |
3 files changed, 10 insertions, 0 deletions
diff --git a/configs/test/hello b/configs/test/hello Binary files differnew file mode 100755 index 000000000..59c0d195c --- /dev/null +++ b/configs/test/hello diff --git a/configs/test/hello_mips b/configs/test/hello_mips Binary files differnew file mode 100755 index 000000000..182182b4f --- /dev/null +++ b/configs/test/hello_mips diff --git a/configs/test/test.py b/configs/test/test.py new file mode 100644 index 000000000..86a44313a --- /dev/null +++ b/configs/test/test.py @@ -0,0 +1,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) |