summaryrefslogtreecommitdiff
path: root/dev/console.cc
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2004-01-28 18:12:52 -0500
committerAli Saidi <saidi@eecs.umich.edu>2004-01-28 18:12:52 -0500
commitb6fba57065d42f12274e83d885a3af048e2daa78 (patch)
tree62cc0cac418a3e2fe10df6d716e925dad04605e6 /dev/console.cc
parent3ccc0b1f968e3efaeccda65e06f862c899678312 (diff)
downloadgem5-b6fba57065d42f12274e83d885a3af048e2daa78.tar.xz
our first interrupt
cpu/exetrace.cc: added looking for symbols at PC+4 and PC+8 thanks to gcc skiping setting the gp where it can and jumping <func>+8 dev/console.cc: commented out weird interrupt per nate's suggestion dev/tsunami_cchip.cc: moved rtc flag to correct bit dev/tsunami_io.cc: time interrupt will be 1024Hz and at some point be configurable by linux dev/tsunami_io.hh: Timer interrupt will be 1024hz for now and in the future be configurable by linux --HG-- extra : convert_revision : 2fcc924c8848eb3c6166d9d517617ed193a2b89a
Diffstat (limited to 'dev/console.cc')
-rw-r--r--dev/console.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/console.cc b/dev/console.cc
index f4156207d..08b169bc4 100644
--- a/dev/console.cc
+++ b/dev/console.cc
@@ -388,8 +388,8 @@ CREATE_SIM_OBJECT(SimConsole)
SimConsole *console = new SimConsole(getInstanceName(), filename, number);
((ConsoleListener *)listener)->add(console);
((SimConsole *)console)->initInt(intr_control);
- ((SimConsole *)console)->setInt(SimConsole::TransmitInterrupt |
- SimConsole::ReceiveInterrupt);
+// ((SimConsole *)console)->setInt(SimConsole::TransmitInterrupt |
+// SimConsole::ReceiveInterrupt);
return console;
}