// assembly.h // These are functions useful for translating assembly mnemonics to hex and vice-versa for the SplitBit CPU. // Written by Anachronaut // 10/18/2024 #include #ifndef ASSEMBLY_H #define ASSEMBLY_H const char* getMnemonic(uint8_t opcode); uint8_t getOpcode(char* mnemonic); int instructionTakesDataPointer(uint8_t opcode); #endif // CPU_H