se.py (5514:9a903bf83a33) | se.py (5822:05ffa2c3c800) |
---|---|
1# Copyright (c) 2006-2008 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 19 unchanged lines hidden (view full) --- 28 29# Simple test script 30# 31# "m5 test.py" 32 33import m5 34 35if m5.build_env['FULL_SYSTEM']: | 1# Copyright (c) 2006-2008 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 19 unchanged lines hidden (view full) --- 28 29# Simple test script 30# 31# "m5 test.py" 32 33import m5 34 35if m5.build_env['FULL_SYSTEM']: |
36 m5.panic("This script requires syscall emulation mode (*_SE).") | 36 m5.fatal("This script requires syscall emulation mode (*_SE).") |
37 38from m5.objects import * 39import os, optparse, sys 40from os.path import join as joinpath 41m5.AddToPath('../common') 42import Simulation 43from Caches import * 44from cpu2000 import * --- 113 unchanged lines hidden --- | 37 38from m5.objects import * 39import os, optparse, sys 40from os.path import join as joinpath 41m5.AddToPath('../common') 42import Simulation 43from Caches import * 44from cpu2000 import * --- 113 unchanged lines hidden --- |