Implement Breakpoints

This commit is contained in:
kamkow1
2025-03-09 17:29:45 +01:00
parent 93f329328a
commit bb8eafbe32
6 changed files with 310 additions and 10 deletions

10
test.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
int main(void)
{
for (int i = 0; i < 20; i++) {
printf("i = %d\n", i);
}
return 0;
}