Deleted Added
sdiff udiff text old ( 3025:00fe36086a14 ) new ( 3105:993f1abefd67 )
full compact
1# Copyright (c) 2006 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

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

61 self.physmem.port = self.membus.port
62 self.disk0 = CowIdeDisk(driveID='master')
63 self.disk2 = CowIdeDisk(driveID='master')
64 self.disk0.childImage(mdesc.disk())
65 self.disk2.childImage(disk('linux-bigswap2.img'))
66 self.tsunami = BaseTsunami()
67 self.tsunami.attachIO(self.iobus)
68 self.tsunami.ide.pio = self.iobus.port
69 self.tsunami.ethernet.pio = self.iobus.port
70 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
71 read_only = True))
72 self.intrctrl = IntrControl()
73 self.mem_mode = mem_mode
74 self.sim_console = SimConsole(listener=ConsoleListener(port=3456))
75 self.kernel = binary('vmlinux')
76 self.pal = binary('ts_osfpal')
77 self.console = binary('console')

--- 16 unchanged lines hidden ---