mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 16:53:50 +08:00
* simops.c: Do syscall emulation in "syscall" instruction. Add
dummy "trap" instruction. Cleanups for the beta release.
This commit is contained in:
@ -2832,6 +2832,13 @@ void OP_F0FD (insn, extension)
|
|||||||
/* trap */
|
/* trap */
|
||||||
void OP_F0FE (insn, extension)
|
void OP_F0FE (insn, extension)
|
||||||
unsigned long 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
|
/* We use this for simulated system calls; we may need to change
|
||||||
it to a reserved instruction if we conflict with uses at
|
it to a reserved instruction if we conflict with uses at
|
||||||
|
Reference in New Issue
Block a user