mirror of
https://github.com/holub/mame
synced 2025-07-01 16:19:38 +03:00
Moved the declaration of rsp_dasm_one() to a header file
This commit is contained in:
parent
fd8f739ec7
commit
352be30534
@ -32,8 +32,6 @@ const device_type RSP = &device_creator<rsp_device>;
|
|||||||
(uint32_t)( ( ACCUM(x) >> 32 ) & 0x00000000ffffffff ), \
|
(uint32_t)( ( ACCUM(x) >> 32 ) & 0x00000000ffffffff ), \
|
||||||
(uint32_t)( ACCUM(x) & 0x00000000ffffffff ))
|
(uint32_t)( ACCUM(x) & 0x00000000ffffffff ))
|
||||||
|
|
||||||
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
|
|
||||||
|
|
||||||
|
|
||||||
#define SIMM16 ((int32_t)(int16_t)(op))
|
#define SIMM16 ((int32_t)(int16_t)(op))
|
||||||
#define UIMM16 ((uint16_t)(op))
|
#define UIMM16 ((uint16_t)(op))
|
||||||
|
@ -326,5 +326,7 @@ private:
|
|||||||
|
|
||||||
extern const device_type RSP;
|
extern const device_type RSP;
|
||||||
|
|
||||||
|
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
|
||||||
|
|
||||||
|
|
||||||
#endif /* __RSP_H__ */
|
#endif /* __RSP_H__ */
|
||||||
|
@ -587,8 +587,6 @@ void rsp_cop2::vec_store_group4(uint32_t addr, uint32_t element, uint16_t *regp,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
Helpful Defines
|
Helpful Defines
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
@ -19,8 +19,6 @@
|
|||||||
|
|
||||||
using namespace uml;
|
using namespace uml;
|
||||||
|
|
||||||
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
Helpful Defines
|
Helpful Defines
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
@ -31,8 +31,6 @@ using namespace uml;
|
|||||||
|
|
||||||
CPU_DISASSEMBLE( rsp );
|
CPU_DISASSEMBLE( rsp );
|
||||||
|
|
||||||
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
CONSTANTS
|
CONSTANTS
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user