Added the Assembler. Added instructions for the assembler to README.md Added Assembler Manual Modified Makefile to build the Assembler.
14 lines
259 B
C
14 lines
259 B
C
// boostrap.h
|
|
// Boostrapping Functions for the SplitBit CPU Emulator
|
|
// Written by Anachronaut
|
|
// 10/16/2024
|
|
|
|
#ifndef BOOTSTRAP_H
|
|
#define BOOTSTRAP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t loadFile(char *path, uint8_t *Program, uint8_t *Data);
|
|
|
|
#endif // BOOTSTRAP_H
|