Convert CLI version input parsing to Lex/Yacc
[emu8051.git] / src / common / cpu8051.c
index 107f2ef..fb93126 100644 (file)
@@ -99,6 +99,13 @@ ClearBreakpoint(unsigned int address)
        }
 }
 
+/* Clear all breakpoints */
+void
+ClearAllBreakpoints(void)
+{
+       cpu8051.bp_count = 0;
+}
+
 /* Toggle the breakpoint at Address. */
 void
 ToggleBreakpoint(unsigned int address)