rename testcode/ to targettest/

This commit is contained in:
mrdudz
2020-09-29 19:14:46 +02:00
parent dcee493e94
commit 4777e98f57
82 changed files with 0 additions and 0 deletions

38
targettest/deb.c Normal file
View File

@@ -0,0 +1,38 @@
/*
** test program for the debugger
**
** press 'd' to enter the debugger
**
*/
#include <stdio.h>
#include <conio.h>
#include <6502.h>
#include <dbg.h>
int main(void)
{
char c;
/* Initialize the debugger */
DbgInit (0);
clrscr();
cputsxy(4,10,"Debugger test...."); cgetc();
while(1) {
printf("press d to debug, q to exit....\n");
c = cgetc();
if (c == 'q') {
printf("exiting....\n");
return(0);
}
if (c == 'd') {
printf("entering debug...\n");
BREAK();
printf("return from debug...\n");
}
else {
printf("unknown key '%c'\n",c);
}
}
}