aboutsummaryrefslogtreecommitdiff
path: root/source/fxemu.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fxemu.c')
-rw-r--r--source/fxemu.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/fxemu.c b/source/fxemu.c
index 749a00e..ecef971 100644
--- a/source/fxemu.c
+++ b/source/fxemu.c
@@ -635,10 +635,12 @@ int FxEmulate(uint32_t nInstructions)
/* Execute GSU session */
CF(IRQ);
+ /*
if (GSU.bBreakPoint)
vCount = fx_ppfFunctionTable[FX_FUNCTION_RUN_TO_BREAKPOINT](nInstructions);
else
- vCount = fx_ppfFunctionTable[FX_FUNCTION_RUN](nInstructions);
+ */
+ vCount = fx_ppfFunctionTable[FX_FUNCTION_RUN](nInstructions);
/* Store GSU registers */
fx_writeRegisterSpace();
@@ -651,6 +653,7 @@ int FxEmulate(uint32_t nInstructions)
}
/* Breakpoints */
+/*
void FxBreakPointSet(uint32_t vAddress)
{
GSU.bBreakPoint = true;
@@ -659,7 +662,7 @@ void FxBreakPointSet(uint32_t vAddress)
void FxBreakPointClear()
{
GSU.bBreakPoint = false;
-}
+}*/
/* Step by step execution */
int FxStepOver(uint32_t nInstructions)