A simple computer architecture simulator for COMS30046
Go to file
2024-02-12 19:42:27 +00:00
.gitignore CPU: Created a basic CPU that can run a loop, along with several small bugfixes elsewhere to make it work 2024-02-03 22:54:20 +00:00
assembly.c CPU: Added support for PUSH and POP and fixed CALL and RET 2024-02-12 19:42:27 +00:00
assembly.h ASM: Added support for labels in the assembler 2024-02-12 17:51:16 +00:00
COPYING Added license and added gui error reporting 2024-01-23 13:33:04 +00:00
cpu.c CPU: Added support for PUSH and POP and fixed CALL and RET 2024-02-12 19:42:27 +00:00
cpu.h CPU: Added support for PUSH and POP and fixed CALL and RET 2024-02-12 19:42:27 +00:00
gui.c GUI: Added display of PC and SP to the registers window 2024-02-12 15:15:54 +00:00
gui.h CPU: Added support for conditional branches, HLT and NOP 2024-02-06 23:14:33 +00:00
main.c ASM: Added support for labels in the assembler 2024-02-12 17:51:16 +00:00
Makefile CPU: Created a basic CPU that can run a loop, along with several small bugfixes elsewhere to make it work 2024-02-03 22:54:20 +00:00
README.md Initial commit: created project skeleton 2024-01-22 12:11:07 +00:00
simdata.c CPU: Moved the PC and SP registers into the registers_t struct 2024-02-12 14:16:41 +00:00
simdata.h CPU: Moved the PC and SP registers into the registers_t struct 2024-02-12 14:16:41 +00:00
test.asm CPU: Added support for PUSH and POP and fixed CALL and RET 2024-02-12 19:42:27 +00:00

First - A simple computer architecture simulator for COMS30046