FSConfig.py (4520:c118873326c7) FSConfig.py (4965:ad0e792a5c78)
1# Copyright (c) 2006-2007 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

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

48
49 self = LinuxAlphaSystem()
50 if not mdesc:
51 # generic system
52 mdesc = SysConfig()
53 self.readfile = mdesc.script()
54 self.iobus = Bus(bus_id=0)
55 self.membus = Bus(bus_id=1)
1# Copyright (c) 2006-2007 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

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

48
49 self = LinuxAlphaSystem()
50 if not mdesc:
51 # generic system
52 mdesc = SysConfig()
53 self.readfile = mdesc.script()
54 self.iobus = Bus(bus_id=0)
55 self.membus = Bus(bus_id=1)
56 self.bridge = Bridge(fix_partial_write_b=True, delay='50ns', nack_delay='4ns')
56 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
57 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
58 self.bridge.side_a = self.iobus.port
59 self.bridge.side_b = self.membus.port
60 self.physmem.port = self.membus.port
61 self.disk0 = CowIdeDisk(driveID='master')
62 self.disk2 = CowIdeDisk(driveID='master')
63 self.disk0.childImage(mdesc.disk())
64 self.disk2.childImage(disk('linux-bigswap2.img'))

--- 70 unchanged lines hidden ---
57 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
58 self.bridge.side_a = self.iobus.port
59 self.bridge.side_b = self.membus.port
60 self.physmem.port = self.membus.port
61 self.disk0 = CowIdeDisk(driveID='master')
62 self.disk2 = CowIdeDisk(driveID='master')
63 self.disk0.childImage(mdesc.disk())
64 self.disk2.childImage(disk('linux-bigswap2.img'))

--- 70 unchanged lines hidden ---