Updated the scanner to parse registers, assembly keywords and identifiers.

This commit is contained in:
2022-05-04 20:07:47 +00:00
parent 2c9478d311
commit 859035da2a
5 changed files with 83 additions and 89 deletions
+2
View File
@@ -3,9 +3,11 @@
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "stdlib.h"
#include "token.h"
#include "list.h"
#include "opcodes.h"
List* GenerateTokenList(const char*);