mirror of
https://github.com/mupen64plus-ae/parallel-rsp.git
synced 2024-11-23 05:29:39 +00:00
Build cleanup.
This commit is contained in:
parent
362e7ab09a
commit
9f273b91c8
@ -7,7 +7,7 @@
|
||||
// 'LICENSE', which is part of this source code package.
|
||||
//
|
||||
|
||||
#include "../../../rsp.hpp"
|
||||
#include "../../../state.hpp"
|
||||
#include "rsp.h"
|
||||
#include <string.h>
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
//
|
||||
|
||||
#include "../../../rsp/reciprocal.h"
|
||||
#include <string.h>
|
||||
|
||||
// Mask table for vrsq(LH) functions.
|
||||
alignas(16) static const uint16_t vrsq_mask_table[8][8] = {
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "rsp.hpp"
|
||||
#include "rsp_jit.hpp"
|
||||
#include <stdint.h>
|
||||
|
||||
#include "m64p_plugin.h"
|
||||
@ -10,7 +10,7 @@
|
||||
namespace RSP
|
||||
{
|
||||
RSP_INFO rsp;
|
||||
CPU cpu;
|
||||
RSP::JIT::CPU cpu;
|
||||
short MFC0_count[32];
|
||||
int SP_STATUS_TIMEOUT;
|
||||
} // namespace RSP
|
||||
|
@ -1,8 +1,7 @@
|
||||
#include "../rsp.hpp"
|
||||
#include "../state.hpp"
|
||||
|
||||
#ifdef PARALLEL_INTEGRATION
|
||||
#include "../Rsp_#1.1.h"
|
||||
#include "../rsp_1.1.h"
|
||||
#include "m64p_plugin.h"
|
||||
namespace RSP
|
||||
{
|
||||
@ -295,7 +294,6 @@ extern "C"
|
||||
break;
|
||||
|
||||
case CP0_REGISTER_CMD_CLOCK:
|
||||
fprintf(stderr, "CMD_CLOCK");
|
||||
*rsp->cp0.cr[CP0_REGISTER_CMD_CLOCK] = val;
|
||||
break;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../rsp.hpp"
|
||||
#include "../state.hpp"
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "../rsp.hpp"
|
||||
#include "../state.hpp"
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
@ -8,9 +8,10 @@
|
||||
// 'LICENSE', which is part of this source code package.
|
||||
//
|
||||
|
||||
#include "../rsp.hpp"
|
||||
#include "../state.hpp"
|
||||
#include "../rsp_op.hpp"
|
||||
#include "rsp_impl.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#define LOAD_VS() rsp_vect_load_unshuffled_operand(rsp->cp2.regs[vs].e)
|
||||
#define LOAD_VT() rsp_vect_load_and_shuffle_operand(rsp->cp2.regs[vt].e, e)
|
||||
|
Loading…
Reference in New Issue
Block a user