pc-simple-timing-ruby.py (8968:6d11b01e2c53) pc-simple-timing-ruby.py (9113:9a72589ce4fd)
1# Copyright (c) 2012 Mark D. Hill and David A. Wood
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
29import m5, os, optparse, sys
30from m5.objects import *
31m5.util.addToPath('../configs/common')
32from Benchmarks import SysConfig
33import FSConfig
34
35m5.util.addToPath('../configs/ruby')
1# Copyright (c) 2012 Mark D. Hill and David A. Wood
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
29import m5, os, optparse, sys
30from m5.objects import *
31m5.util.addToPath('../configs/common')
32from Benchmarks import SysConfig
33import FSConfig
34
35m5.util.addToPath('../configs/ruby')
36m5.util.addToPath('../configs/topology')
36import Ruby
37import Options
38
39# Add the ruby specific and protocol specific options
40parser = optparse.OptionParser()
41Options.addCommonOptions(parser)
42Ruby.define_options(parser)
43(options, args) = parser.parse_args()

--- 34 unchanged lines hidden ---
37import Ruby
38import Options
39
40# Add the ruby specific and protocol specific options
41parser = optparse.OptionParser()
42Options.addCommonOptions(parser)
43Ruby.define_options(parser)
44(options, args) = parser.parse_args()

--- 34 unchanged lines hidden ---