mirror of
https://github.com/holub/mame
synced 2025-05-24 14:56:21 +03:00
Converted a number of vector opcodes to the RSP DRC core. [Harmony]
Unrolled and optimized a number of vector opcodes in the interpreter RSP core. [Harmony]
This commit is contained in:
parent
49c68fef35
commit
7858c436fc
@ -1,11 +1,11 @@
|
|||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
mips3.h
|
rsp.h
|
||||||
|
|
||||||
Interface file for the universal machine language-based
|
Interface file for the universal machine language-based
|
||||||
Reality Signal Processor (RSP) emulator.
|
Reality Signal Processor (RSP) emulator.
|
||||||
|
|
||||||
Copyright the MESS etam
|
Copyright the MESS team
|
||||||
Released for general non-commercial use under the MAME license
|
Released for general non-commercial use under the MAME license
|
||||||
Visit http://mamedev.org for licensing and usage restrictions.
|
Visit http://mamedev.org for licensing and usage restrictions.
|
||||||
|
|
||||||
@ -164,6 +164,11 @@ typedef struct
|
|||||||
INT16 mid;
|
INT16 mid;
|
||||||
INT16 high;
|
INT16 high;
|
||||||
} h;
|
} h;
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
INT32 zl;
|
||||||
|
INT32 mh;
|
||||||
|
} w;
|
||||||
#else
|
#else
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@ -172,6 +177,11 @@ typedef struct
|
|||||||
INT16 low;
|
INT16 low;
|
||||||
INT16 z;
|
INT16 z;
|
||||||
} h;
|
} h;
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
INT32 mh;
|
||||||
|
INT32 zl;
|
||||||
|
} w;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
} ACCUMULATOR;
|
} ACCUMULATOR;
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user