Improved debug display.

Bug fixes: POPD and POPP now pull bytes from the stack in proper order.
This commit is contained in:
Anachronaut
2024-10-18 18:01:23 -04:00
committed by GitHub
parent ffac4c2c0a
commit 4deb56953d
4 changed files with 98 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
// assembly.c
// These are functions useful for translating assembly mnemonics to hex and vice-versa for the SplitBit CPU.
// Written by Anachronaut
// 10/18/2024
#include <stdint.h>
#ifndef ASSEMBLY_H
#define ASSEMBLY_H
const char* getMnemonic(uint8_t opcode);
#endif // CPU_H