app dir changed and src dir removed

This commit is contained in:
2025-02-16 17:37:56 +01:00
parent 4f6cd20130
commit f3c2569a30
22 changed files with 88 additions and 58 deletions

11
bs/cmds/exit.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
#include "exit.h"
const char cmd_exit_help[] = "Bla bla.";
int cmd_exit(jtag_core *jc, int argc, char **argv) {
jtagcore_deinit(jc);
exit(0);
}