diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-10-13 16:09:33 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-10-13 16:09:33 -0400 |
commit | 60a7bd950b4c3a2b9bffed92f14fdd50f566222c (patch) | |
tree | 720c4032298c08e94a9fcd4b7aafc98dd947f626 /arch/alpha/vtophys.hh | |
parent | b177f696ff10473d6421af90d740254d523c5f7e (diff) | |
download | gem5-60a7bd950b4c3a2b9bffed92f14fdd50f566222c.tar.xz |
CopyData and CopyString moved from kernel.cc to vtophys.cc
kernel.cc and kernel.hh moved to kern/tru64
--HG--
extra : convert_revision : 1b9123af03960b602a2d52dfa7b714280f9995aa
Diffstat (limited to 'arch/alpha/vtophys.hh')
-rw-r--r-- | arch/alpha/vtophys.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/alpha/vtophys.hh b/arch/alpha/vtophys.hh index 8d121ec5b..75a589259 100644 --- a/arch/alpha/vtophys.hh +++ b/arch/alpha/vtophys.hh @@ -42,5 +42,8 @@ Addr vtophys(PhysicalMemory *xc, Addr vaddr); Addr vtophys(ExecContext *xc, Addr vaddr); uint8_t *vtomem(ExecContext *xc, Addr vaddr, size_t len); +void CopyData(ExecContext *xc, void *dst, Addr vaddr, size_t len); +void CopyString(ExecContext *xc, char *dst, Addr vaddr, size_t maxlen); + #endif // __VTOPHYS_H__ |