* simops.c: Do syscall emulation in "syscall" instruction. Add

dummy "trap" instruction.
Cleanups for the beta release.
This commit is contained in:
Jeff Law 1997-03-18 21:24:38 +00:00
parent 4e4dd8765f
commit 0915c8433b
1 changed files with 7 additions and 0 deletions

View File

@ -2832,6 +2832,13 @@ void OP_F0FD (insn, extension)
/* trap */
void OP_F0FE (insn, extension)
unsigned long insn, extension;
{
abort ();
}
/* syscall */
void OP_F0FF (insn, extension)
unsigned long insn, extension;
{
/* We use this for simulated system calls; we may need to change
it to a reserved instruction if we conflict with uses at