Deleted Added
sdiff udiff text old ( 8931:7a1dfb191e3f ) new ( 8933:2727a5a0aadc )
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;

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

60options.l1i_size="256B"
61options.l2_size="512B"
62options.l3_size="1kB"
63options.l1d_assoc=2
64options.l1i_assoc=2
65options.l2_assoc=2
66options.l3_assoc=2
67
68#
69# create the tester and system, including ruby
70#
71tester = RubyTester(checks_to_complete = 100, wakeup_frequency = 10)
72
73system = System(tester = tester, physmem = SimpleMemory())
74
75Ruby.create_system(options, system)
76
77assert(options.num_cpus == len(system.ruby._cpu_ruby_ports))
78
79#

--- 32 unchanged lines hidden ---