diff options
Diffstat (limited to 'target-sparc/exec.h')
-rw-r--r-- | target-sparc/exec.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target-sparc/exec.h b/target-sparc/exec.h new file mode 100644 index 000000000..72e4588f6 --- /dev/null +++ b/target-sparc/exec.h @@ -0,0 +1,16 @@ +#ifndef EXEC_SPARC_H +#define EXEC_SPARC_H 1 +#include "dyngen-exec.h" + +register struct CPUSPARCState *env asm(AREG0); +register uint32_t T0 asm(AREG1); +register uint32_t T1 asm(AREG2); +register uint32_t T2 asm(AREG3); + +#include "cpu.h" +#include "exec-all.h" + +void cpu_lock(void); +void cpu_unlock(void); +void cpu_loop_exit(void); +#endif |