12345678910111213141516171819202122232425262728293031323334353637383940 |
- define enable_enteringDebugSection
- break -function enteringDebugSection
-
- command
-
- enable
-
- cont
- end
- end
- define enable_exitingDebugSection
- break -function exitingDebugSection
-
- command
-
- disable
-
- enable_enteringDebugSection
-
- cont
- end
- end
- break -function NimMain
- command
-
- disable
-
- enable_enteringDebugSection
-
- delete -function NimMain
-
- cont
- end
|