From 6083c8280b3042ddbdbdfc3868a26bd69712d4d7 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Thu, 1 Jul 2004 18:03:05 -0400 Subject: implement the readfile pseudo instruction that will read a realworld file. arch/alpha/isa_desc: arch/alpha/pseudo_inst.hh: implement the readfile pseudo instruction that will read a chunk of a realworld file. arch/alpha/pseudo_inst.cc: implement the readfile pseudo instruction that will read a chunk of a realworld file. The filename is a per system parameter and comes from the system itself. kern/linux/linux_system.cc: sim/system.hh: Create a per-system readfile parameter for use by the readfile pseudo instruction. That way each system can get its own file. --HG-- extra : convert_revision : 941b3a3e20702a6252b219ca66a6d90da2944c50 --- sim/system.hh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sim') diff --git a/sim/system.hh b/sim/system.hh index baf82a5b5..da974cfdd 100644 --- a/sim/system.hh +++ b/sim/system.hh @@ -96,6 +96,8 @@ class System : public SimObject std::vector execContexts; + std::string readfile; + virtual int registerExecContext(ExecContext *xc); virtual void replaceExecContext(int xcIndex, ExecContext *xc); -- cgit v1.2.3