diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-25 20:46:56 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-25 20:46:56 +0000 |
commit | e9c71dd1c1f5aeb3732261a02dcfae031973f053 (patch) | |
tree | de9b88fe2a6e0ffbb6b2f1fa63f401e14aa66e6a /target-mips/exec.h | |
parent | 29fe0e3490ef63f564f426fc526d4415f44e7052 (diff) |
Support for VR5432, and some of its special instructions. Original patch
by Dirk Behme.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3859 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/exec.h')
-rw-r--r-- | target-mips/exec.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target-mips/exec.h b/target-mips/exec.h index 307049ed31..7b2c4687f6 100644 --- a/target-mips/exec.h +++ b/target-mips/exec.h @@ -79,6 +79,20 @@ void do_madd (void); void do_maddu (void); void do_msub (void); void do_msubu (void); +void do_muls (void); +void do_mulsu (void); +void do_macc (void); +void do_macchi (void); +void do_maccu (void); +void do_macchiu (void); +void do_msac (void); +void do_msachi (void); +void do_msacu (void); +void do_msachiu (void); +void do_mulhi (void); +void do_mulhiu (void); +void do_mulshi (void); +void do_mulshiu (void); #endif #if defined(TARGET_MIPS64) void do_ddiv (void); |