mirror of
https://github.com/libretro/parallel-n64.git
synced 2025-03-01 05:05:49 +00:00
Write reference VCC correctly.
This commit is contained in:
parent
6df2b47415
commit
10bfce7ef5
@ -643,7 +643,7 @@ EXPORT unsigned int CALL cxd4DoRspCycles(unsigned int cycles)
|
||||
|
||||
uint16_t VCO = get_VCO();
|
||||
rsp_dump_block("VCO END", &VCO, sizeof(VCO));
|
||||
uint16_t VCC = get_VCO();
|
||||
uint16_t VCC = get_VCC();
|
||||
rsp_dump_block("VCC END", &VCC, sizeof(VCC));
|
||||
uint16_t VCE = get_VCE();
|
||||
rsp_dump_block("VCE END", &VCE, sizeof(VCE));
|
||||
@ -714,7 +714,8 @@ EXPORT void CALL cxd4InitiateRSP(RSP_INFO Rsp_Info, unsigned int *CycleCount)
|
||||
stale_signals = 0;
|
||||
|
||||
#ifdef HAVE_RSP_DUMP
|
||||
rsp_open_trace("/tmp/dump.rsp");
|
||||
const char *path = getenv("RSP_DUMP");
|
||||
rsp_open_trace(path ? path : "/tmp/dump.rsp");
|
||||
#endif
|
||||
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user