Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
+#ifdef sgi
+#include <sys/inst.h>
+#else
#include <mips/inst.h>
+#endif
#include "defs.h"
#include "param.h"
#include "frame.h"
#include <sys/file.h>
#include <sys/stat.h>
+/* For now we stub this out; sgi format is super-hairy (and completely
+ different in the new release) */
+
+#ifdef sgi
+void
+fetch_core_registers ()
+{
+ return;
+}
+
+void
+fetch_inferior_registers ()
+{
+ return;
+}
+
+store_inferior_registers (regno)
+ int regno;
+{
+ return;
+}
+
+
+#else
+
/* Get all registers from the inferior */
void
If REGNO is -1, do this for all registers.
Otherwise, REGNO specifies which register (so we can save time). */
+void
store_inferior_registers (regno)
int regno;
-{
+ {
register unsigned int regaddr;
char buf[80];
}
}
+#endif /* sgi */
+
#if 0
void
fetch_core_registers ()