Deleted Added
sdiff udiff text old ( 11670:6ce719503eae ) new ( 11682:612f75cf36a0 )
full compact
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 20 unchanged lines hidden (view full) ---

29# Brad Beckmann
30
31import m5
32from m5.objects import *
33from m5.defines import buildEnv
34from m5.util import addToPath
35import os, optparse, sys
36
37m5.util.addToPath('../configs/')
38
39from ruby import Ruby
40from common import Options
41
42parser = optparse.OptionParser()
43Options.addCommonOptions(parser)
44
45# Add the ruby specific and protocol specific options
46Ruby.define_options(parser)
47
48(options, args) = parser.parse_args()

--- 82 unchanged lines hidden ---