Updated the parser to better handle parameters, sort of and including a string length assembly program to use as a test for the whole assembler.

This commit is contained in:
2022-10-03 21:26:28 +00:00
parent 706f480e31
commit be91e3c112
5 changed files with 76 additions and 73 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include "parser.h"
void Disassemble(unsigned char image[HIGHMEMORY]);
//void Disassemble(unsigned char image[HIGHMEMORY]);
#endif
+1
View File
@@ -24,6 +24,7 @@ typedef struct {
Mnemonic Mnemonic;
OpcodeParameter ParameterOneType;
OpcodeParameter ParameterTwoType;
int LineNumber;
union {
int Constant;