summaryrefslogtreecommitdiff
path: root/dev/alpha_console.cc
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2004-01-29 16:32:03 -0500
committerNathan Binkert <binkertn@umich.edu>2004-01-29 16:32:03 -0500
commitee4263f72e547d551e26b058ee16a48a5f47e3c4 (patch)
tree0430dfb5febc3e431581fa752d51141efef703f7 /dev/alpha_console.cc
parent639037d127586bb363ed314b2f00f1d371555ae1 (diff)
downloadgem5-ee4263f72e547d551e26b058ee16a48a5f47e3c4.tar.xz
Fix character input by handling the character and the
special console values separately. dev/alpha_console.cc: use new console specific input function --HG-- extra : convert_revision : 08997d6115d2aac3a26cac2774b3c3fc0cd76ab0
Diffstat (limited to 'dev/alpha_console.cc')
-rw-r--r--dev/alpha_console.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/alpha_console.cc b/dev/alpha_console.cc
index ccf6c33fd..8e59db932 100644
--- a/dev/alpha_console.cc
+++ b/dev/alpha_console.cc
@@ -81,7 +81,7 @@ AlphaConsole::read(MemReqPtr req, uint8_t *data)
Addr daddr = req->paddr & addr_mask;
switch (daddr) {
case offsetof(AlphaAccess, inputChar):
- val = console->in();
+ val = console->console_in();
break;
default: