gem5/util/m5/m5op.h
Nathan Binkert 15613161c2 Commit a command for use inside a simulated system for communicating
with the simulator.  This program is generally compiled as the name
m5 and installed in /usr/local/bin

This command uses opcodes that are invalid on a normal system, so
don't expect it to do anything on a real system.

--HG--
extra : convert_revision : fcbae99d4b0d38ff4a9950f1ab53923baa1f667a
2003-11-01 13:20:44 -05:00

11 lines
222 B
C

#ifndef __M5OP_H__
#define __M5OP_H__
void arm(unsigned long address);
void quiesce();
void ivlb(unsigned long interval);
void ivle(unsigned long interval);
void m5exit();
unsigned long initparam();
#endif // __M5OP_H__