This commit is contained in:
2023-09-20 19:39:31 +02:00
parent 47f2cde673
commit 3a9ec5ecfe
8 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1 @@
#include "../include/analyzer.h"

View File

@@ -0,0 +1 @@
#include "../include/assembling.h"

View File

@@ -0,0 +1,24 @@
#include <stdlib.h>
#include "../include/analyzer.h"
#include "../include/assembling.h"
#include "../include/tokenizer.h"
/**
* @name main
* @return int
* @brief Parse command line options and run compilation.
*
* @param int argc
* @param char** argv
*/
int main (int argc, char** argv) {
int rv = EXIT_SUCCESS;
/* check for right amount of cl arguments (1 filename at the moment) */
if (argc != 2) {
exit(EXIT_FAILURE);
}
return rv;
}

View File

@@ -0,0 +1 @@
#include "../include/tokenizer.h"