A simple computer architecture simulator for COMS30046
Go to file
2024-02-16 19:12:03 +00:00
programs GUI: Added support for double buffering on the vector display for smoother motion 2024-02-16 19:12:03 +00:00
.gitignore Programs: Added a program that will draw a spinning cube on the vector display but currently only does the perspective calculations 2024-02-16 18:11:58 +00:00
assembly.c CPU,ASM: Added floating point add and subtract instructions FADD and FSUB 2024-02-16 17:48:04 +00:00
assembly.h ASM: Added support for defining arbitrary double-words 2024-02-14 12:57:07 +00:00
COPYING Added license and added gui error reporting 2024-01-23 13:33:04 +00:00
cpu.c CPU,ASM: Added floating point add and subtract instructions FADD and FSUB 2024-02-16 17:48:04 +00:00
cpu.h CPU,ASM: Added floating point add and subtract instructions FADD and FSUB 2024-02-16 17:48:04 +00:00
gui.c GUI: Added support for double buffering on the vector display for smoother motion 2024-02-16 19:12:03 +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 empty lines... ...and comments on those empty lines 2024-02-14 14:22:49 +00:00
Makefile Programs: Added a program that will draw a spinning cube on the vector display but currently only does the perspective calculations 2024-02-16 18:11:58 +00:00
README.md Initial commit: created project skeleton 2024-01-22 12:11:07 +00:00
simdata.c GUI: Added a vector graphics display using braille characters to form a frame buffer in the terminal window 2024-02-14 02:42:24 +00:00
simdata.h GUI: Added a vector graphics display using braille characters to form a frame buffer in the terminal window 2024-02-14 02:42:24 +00:00
test.asm Project: fixed several small bugs and changed the implementation of the line drawing algorythm for the braille display to one that actually works 2024-02-16 17:06:27 +00:00

First - A simple computer architecture simulator for COMS30046