Moved the declaration of rsp_dasm_one() to a header file

This commit is contained in:
Nathan Woods 2016-11-17 07:53:16 -05:00
parent fd8f739ec7
commit 352be30534
5 changed files with 2 additions and 8 deletions

View File

@ -32,8 +32,6 @@ const device_type RSP = &device_creator<rsp_device>;
(uint32_t)( ( ACCUM(x) >> 32 ) & 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 UIMM16 ((uint16_t)(op))

View File

@ -326,5 +326,7 @@ private:
extern const device_type RSP;
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
#endif /* __RSP_H__ */

View File

@ -587,8 +587,6 @@ void rsp_cop2::vec_store_group4(uint32_t addr, uint32_t element, uint16_t *regp,
}
#endif
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
/***************************************************************************
Helpful Defines
***************************************************************************/

View File

@ -19,8 +19,6 @@
using namespace uml;
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
/***************************************************************************
Helpful Defines
***************************************************************************/

View File

@ -31,8 +31,6 @@ using namespace uml;
CPU_DISASSEMBLE( rsp );
extern offs_t rsp_dasm_one(char *buffer, offs_t pc, uint32_t op);
/***************************************************************************
CONSTANTS
***************************************************************************/