FSConfig.py (7925:6823ef6d7a9f) FSConfig.py (7937:bb6411d45356)
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

329 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
330
331 # Platform
332 self.pc = Pc()
333
334 # Create and connect the busses required by each memory system
335 if Ruby:
336 connectX86RubySystem(self)
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

329 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
330
331 # Platform
332 self.pc = Pc()
333
334 # Create and connect the busses required by each memory system
335 if Ruby:
336 connectX86RubySystem(self)
337 # add the ide to the list of dma devices that later need to attach to
338 # dma controllers
339 self._dma_devices = [self.pc.south_bridge.ide]
337 else:
338 connectX86ClassicSystem(self)
339
340 self.intrctrl = IntrControl()
341
342 # Disks
343 disk0 = CowIdeDisk(driveID='master')
344 disk2 = CowIdeDisk(driveID='master')

--- 191 unchanged lines hidden ---
340 else:
341 connectX86ClassicSystem(self)
342
343 self.intrctrl = IntrControl()
344
345 # Disks
346 disk0 = CowIdeDisk(driveID='master')
347 disk2 = CowIdeDisk(driveID='master')

--- 191 unchanged lines hidden ---