simple-timing-ruby.py (8931:7a1dfb191e3f) simple-timing-ruby.py (9113:9a72589ce4fd)
1# Copyright (c) 2006-2007 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

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

32from m5.util import addToPath
33import os, optparse, sys
34
35# Get paths we might need
36config_path = os.path.dirname(os.path.abspath(__file__))
37config_root = os.path.dirname(config_path)
38addToPath(config_root+'/configs/common')
39addToPath(config_root+'/configs/ruby')
1# Copyright (c) 2006-2007 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

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

32from m5.util import addToPath
33import os, optparse, sys
34
35# Get paths we might need
36config_path = os.path.dirname(os.path.abspath(__file__))
37config_root = os.path.dirname(config_path)
38addToPath(config_root+'/configs/common')
39addToPath(config_root+'/configs/ruby')
40addToPath(config_root+'/configs/topologies')
40
41import Ruby
42import Options
43
44parser = optparse.OptionParser()
45Options.addCommonOptions(parser)
46
47# Add the ruby specific and protocol specific options

--- 45 unchanged lines hidden ---
41
42import Ruby
43import Options
44
45parser = optparse.OptionParser()
46Options.addCommonOptions(parser)
47
48# Add the ruby specific and protocol specific options

--- 45 unchanged lines hidden ---