Assembler Completed
Added the Assembler. Added instructions for the assembler to README.md Added Assembler Manual Modified Makefile to build the Assembler.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
// firstPass.h
|
||||
// Utility functions for the SplitBit Assembler.
|
||||
// Written by Anachronaut
|
||||
// 10/22/2024
|
||||
|
||||
#ifndef FIRSTPASS_H
|
||||
#define FIRSTPASS_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include "Assm-util.h"
|
||||
|
||||
void freeIncludeList();
|
||||
|
||||
int loadFile(intermediateElement *intermediateArray, char *fileName, int *intermediateIndex, size_t *arraySize);
|
||||
|
||||
#endif // FIRSTPASS_H
|
||||
|
||||
Reference in New Issue
Block a user