summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Debugger/debug_runlooptasks.S6
1 files changed, 5 insertions, 1 deletions
diff --git a/Debugger/debug_runlooptasks.S b/Debugger/debug_runlooptasks.S
index 91e0fa9..91c130e 100644
--- a/Debugger/debug_runlooptasks.S
+++ b/Debugger/debug_runlooptasks.S
@@ -88,9 +88,13 @@
* NxOS Run Loop
*
****************************************************************************/
+ .extern nx_systick_wait_ms
dbg__runloopTasks:
/* Currently, there's nothing that needs to be done in the NxOS Run Loop */
- bx lr
+ push {lr}
+ mov r0, #1 /* 1 ms delay */
+ bl nx_systick_wait_ms
+ pop {pc}
#else
/****************************************************************************