diff options
author | Nathan Binkert <nate@binkert.org> | 2008-06-17 20:29:06 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-06-17 20:29:06 -0700 |
commit | 00df9016fead5f7427576acf6d3faee29779f0a1 (patch) | |
tree | bad5b6b78710fd0e82dcff5b27d2088ec6d706dc /src/dev/alpha/Tsunami.py | |
parent | fa8f91fdc0609fb9cb8bcde22b440b40e52f1cc8 (diff) | |
download | gem5-00df9016fead5f7427576acf6d3faee29779f0a1.tar.xz |
Rename SimConsole to Terminal since it makes more sense
--HG--
rename : src/dev/SimConsole.py => src/dev/Terminal.py
rename : src/dev/simconsole.cc => src/dev/terminal.cc
rename : src/dev/simconsole.hh => src/dev/terminal.hh
Diffstat (limited to 'src/dev/alpha/Tsunami.py')
-rw-r--r-- | src/dev/alpha/Tsunami.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dev/alpha/Tsunami.py b/src/dev/alpha/Tsunami.py index 484976c09..5c5207a33 100644 --- a/src/dev/alpha/Tsunami.py +++ b/src/dev/alpha/Tsunami.py @@ -87,7 +87,8 @@ class Tsunami(Platform): fb = BadDevice(pio_addr=0x801fc0003d0, devicename='FrameBuffer') io = TsunamiIO(pio_addr=0x801fc000000) uart = Uart8250(pio_addr=0x801fc0003f8) - console = AlphaConsole(pio_addr=0x80200000000, disk=Parent.simple_disk) + alpha_console = AlphaConsole(pio_addr=0x80200000000, + disk=Parent.simple_disk) # Attach I/O devices to specified bus object. Can't do this # earlier, since the bus object itself is typically defined at the @@ -120,4 +121,4 @@ class Tsunami(Platform): self.fb.pio = bus.port self.io.pio = bus.port self.uart.pio = bus.port - self.console.pio = bus.port + self.alpha_console.pio = bus.port |