FSConfig.py (6765:b5101309174d) FSConfig.py (6802:e649cb8af113)
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
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

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

211 self = X86System()
212
213 if not mdesc:
214 # generic system
215 mdesc = SysConfig()
216 mdesc.diskname = 'x86root.img'
217 self.readfile = mdesc.script()
218
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
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

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

211 self = X86System()
212
213 if not mdesc:
214 # generic system
215 mdesc = SysConfig()
216 mdesc.diskname = 'x86root.img'
217 self.readfile = mdesc.script()
218
219 self.mem_mode = mem_mode
220
219 # Physical memory
220 self.membus = MemBus(bus_id=1)
221 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
222 self.physmem.port = self.membus.port
223
224 # North Bridge
225 self.iobus = Bus(bus_id=0)
226 self.bridge = Bridge(delay='50ns', nack_delay='4ns')

--- 187 unchanged lines hidden ---
221 # Physical memory
222 self.membus = MemBus(bus_id=1)
223 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
224 self.physmem.port = self.membus.port
225
226 # North Bridge
227 self.iobus = Bus(bus_id=0)
228 self.bridge = Bridge(delay='50ns', nack_delay='4ns')

--- 187 unchanged lines hidden ---