Deleted Added
sdiff udiff text old ( 6893:9cdf9b65d946 ) new ( 6897:cfeb3d9563dd )
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;

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

69 # Must create the individual controllers before the network to ensure the
70 # controller constructors are called before the network constructor
71 #
72
73 for i in xrange(options.num_cpus):
74 #
75 # First create the Ruby objects associated with this cpu
76 #
77 l1i_cache = L1Cache()
78 l1d_cache = L1Cache()
79 l2_cache = L2Cache()
80
81 cpu_seq = RubySequencer(icache = l1i_cache,
82 dcache = l1d_cache,
83 physMemPort = phys_mem.port,
84 physmem = phys_mem)
85
86 if piobus != None:
87 cpu_seq.pio_port = piobus.port
88

--- 42 unchanged lines hidden ---