Deleted Added
sdiff udiff text old ( 10524:fff17530cef6 ) new ( 11266:452e10b868ea )
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;

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

120# artifical delay is randomly inserted on messages
121#
122system.ruby.randomization = True
123
124for ruby_port in system.ruby._cpu_ports:
125 #
126 # Tie the ruby tester ports to the ruby cpu read and write ports
127 #
128 if ruby_port.support_data_reqs:
129 tester.cpuDataPort = ruby_port.slave
130 if ruby_port.support_inst_reqs:
131 tester.cpuInstPort = ruby_port.slave
132
133 #
134 # Tell each sequencer this is the ruby tester so that it
135 # copies the subblock back to the checker
136 #
137 ruby_port.using_ruby_tester = True
138
139# -----------------------
140# run simulation

--- 15 unchanged lines hidden ---