1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2010 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;

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

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

--- 74 unchanged lines hidden ---