mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
Fix compile on windows
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1308 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
0bad9e9385
commit
e8b0757ee7
@ -132,7 +132,7 @@ void gdsp_init()
|
|||||||
void gdsp_reset()
|
void gdsp_reset()
|
||||||
{
|
{
|
||||||
// _assert_msg_(0, "gdsp_reset()");
|
// _assert_msg_(0, "gdsp_reset()");
|
||||||
_assert_msg_(!g_dsp.exception_in_progress_hack, "assert while exception");
|
_assert_msg_(MASTER_LOG, !g_dsp.exception_in_progress_hack, "assert while exception");
|
||||||
g_dsp.pc = DSP_RESET_VECTOR;
|
g_dsp.pc = DSP_RESET_VECTOR;
|
||||||
g_dsp.exception_in_progress_hack = false;
|
g_dsp.exception_in_progress_hack = false;
|
||||||
}
|
}
|
||||||
@ -294,7 +294,7 @@ void gdsp_step()
|
|||||||
{
|
{
|
||||||
if (gdsp_exceptions & (1<<i))
|
if (gdsp_exceptions & (1<<i))
|
||||||
{
|
{
|
||||||
_assert_msg_(!g_dsp.exception_in_progress_hack, "assert while exception");
|
_assert_msg_(MASTER_LOG, !g_dsp.exception_in_progress_hack, "assert while exception");
|
||||||
|
|
||||||
dsp_reg_store_stack(DSP_STACK_C, g_dsp.pc);
|
dsp_reg_store_stack(DSP_STACK_C, g_dsp.pc);
|
||||||
dsp_reg_store_stack(DSP_STACK_D, g_dsp.r[R_SR]);
|
dsp_reg_store_stack(DSP_STACK_D, g_dsp.r[R_SR]);
|
||||||
|
@ -199,7 +199,7 @@ bool CheckCondition(uint8 _Condition)
|
|||||||
|
|
||||||
void dsp_op_unknown(uint16 opc)
|
void dsp_op_unknown(uint16 opc)
|
||||||
{
|
{
|
||||||
_assert_msg_(!g_dsp.exception_in_progress_hack, "assert while exception");
|
_assert_msg_(MASTER_LOG, !g_dsp.exception_in_progress_hack, "assert while exception");
|
||||||
ErrorLog("dsp_op_unknown somewhere");
|
ErrorLog("dsp_op_unknown somewhere");
|
||||||
g_dsp.pc = g_dsp.err_pc;
|
g_dsp.pc = g_dsp.err_pc;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user