diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2009-11-18 13:55:57 -0800 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2009-11-18 13:55:57 -0800 |
commit | 17e14efa7e7358f02f2664e10e4001faf6b7811e (patch) | |
tree | 050d1236f71814bb26437b3ba700ded611412d80 /src/mem/ruby/libruby.cc | |
parent | b7cc66af311923610d612463d401447fb814f258 (diff) | |
download | gem5-17e14efa7e7358f02f2664e10e4001faf6b7811e.tar.xz |
ruby: Ruby 64-bit address output fixes.
Diffstat (limited to 'src/mem/ruby/libruby.cc')
-rw-r--r-- | src/mem/ruby/libruby.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mem/ruby/libruby.cc b/src/mem/ruby/libruby.cc index e4e302eba..b9a72d071 100644 --- a/src/mem/ruby/libruby.cc +++ b/src/mem/ruby/libruby.cc @@ -66,6 +66,12 @@ ostream& operator<<(ostream& out, const RubyRequestType& obj) return out; } +ostream& operator<<(std::ostream& out, const RubyRequest& obj) +{ + out << hex << "0x" << obj.paddr << flush; + return out; +} + vector<string> tokenizeString(string str, string delims) { vector<string> tokens; |