This commit is contained in:
2017-09-10 23:09:27 +02:00
commit 6f6b5b934e
6 changed files with 94 additions and 0 deletions

12
main.c Normal file
View File

@@ -0,0 +1,12 @@
#include "src/debugger.h"
int main(int argc, char** argv) {
if (argc != 2) {
printf("usage: %s PROGRAM\n", argv[0]);
return 1;
}
debug(argv[1]);
return 0;
}