summaryrefslogtreecommitdiff
path: root/util/m5/m5.c
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-02-26 10:34:45 +0000
committerGabe Black <gblack@eecs.umich.edu>2007-02-26 10:34:45 +0000
commita86ad3a512205f05f84d7011f442fb5dc41210d7 (patch)
treea3583fb50bb224a14ac1712b1838875b18808ecb /util/m5/m5.c
parentc0c3a3f491aa02d237cb0d918c962572b547634a (diff)
parentf892608ff7c9898dcbed6dd553632ac2caf4b1ae (diff)
downloadgem5-a86ad3a512205f05f84d7011f442fb5dc41210d7.tar.xz
Merge zizzer.eecs.umich.edu:/bk/newmem
into ahchoo.blinky.homelinux.org:/home/gblack/m5/newmem --HG-- extra : convert_revision : 7e8c3572ede7d93910fc3e2a2e76d9a38b1f4243
Diffstat (limited to 'util/m5/m5.c')
-rw-r--r--util/m5/m5.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/util/m5/m5.c b/util/m5/m5.c
index 190289f06..b103796a8 100644
--- a/util/m5/m5.c
+++ b/util/m5/m5.c
@@ -186,21 +186,5 @@ main(int argc, char *argv[])
m5_loadsymbol(arg1);
return 0;
}
- if (COMPARE("readfile")) {
- char buf[256*1024];
- int offset = 0;
- int len;
-
- if (argc != 2)
- usage();
-
- while ((len = m5_readfile(buf, sizeof(buf), offset)) > 0) {
- write(STDOUT_FILENO, buf, len);
- offset += len;
- }
-
- return 0;
- }
-
usage();
}