Sequencer.py (11019:fc1e41e88fd3) Sequencer.py (11266:452e10b868ea)
1# Copyright (c) 2009 Advanced Micro Devices, Inc.
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

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

40 slave = VectorSlavePort("CPU slave port")
41 master = VectorMasterPort("CPU master port")
42 pio_master_port = MasterPort("Ruby mem master port")
43 mem_master_port = MasterPort("Ruby mem master port")
44 pio_slave_port = SlavePort("Ruby pio slave port")
45 mem_slave_port = SlavePort("Ruby memory port")
46
47 using_ruby_tester = Param.Bool(False, "")
1# Copyright (c) 2009 Advanced Micro Devices, Inc.
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

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

40 slave = VectorSlavePort("CPU slave port")
41 master = VectorMasterPort("CPU master port")
42 pio_master_port = MasterPort("Ruby mem master port")
43 mem_master_port = MasterPort("Ruby mem master port")
44 pio_slave_port = SlavePort("Ruby pio slave port")
45 mem_slave_port = SlavePort("Ruby memory port")
46
47 using_ruby_tester = Param.Bool(False, "")
48 no_retry_on_stall = Param.Bool(False, "")
48 ruby_system = Param.RubySystem(Parent.any, "")
49 system = Param.System(Parent.any, "system object")
50 support_data_reqs = Param.Bool(True, "data cache requests supported")
51 support_inst_reqs = Param.Bool(True, "inst cache requests supported")
52
53class RubyPortProxy(RubyPort):
54 type = 'RubyPortProxy'
55 cxx_header = "mem/ruby/system/RubyPortProxy.hh"

--- 29 unchanged lines hidden ---
49 ruby_system = Param.RubySystem(Parent.any, "")
50 system = Param.System(Parent.any, "system object")
51 support_data_reqs = Param.Bool(True, "data cache requests supported")
52 support_inst_reqs = Param.Bool(True, "inst cache requests supported")
53
54class RubyPortProxy(RubyPort):
55 type = 'RubyPortProxy'
56 cxx_header = "mem/ruby/system/RubyPortProxy.hh"

--- 29 unchanged lines hidden ---