4-bit virtual CPU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Murad Karammaev c09cf227db
gitignore .vscode
2 years ago
src more meaningful errors in assembler library code 2 years ago
toyasm add license and copyright to CLI tools source files 2 years ago
toyvm add license and copyright to CLI tools source files 2 years ago
.gitignore gitignore .vscode 2 years ago
ASM-SYNTAX.md support comments in assembler 2 years ago
Cargo.lock implement assembler library with tests 2 years ago
Cargo.toml implement assembler library with tests 2 years ago
DESIGN.md implement all instructions with 100% test coverage 2 years ago
LICENSE initial commit 2 years ago
MISTAKES.md MISTAKES.md: oops: fix stupid typo 2 years ago
README.md initial commit 2 years ago

README.md

ToyCPU-4bit

This incredibly small CPU is a learning project. During implementation of this CPU, we are expected to learn how to:

  • design ISA in general;
  • implement instruction decoding;
  • impement instruction execution;
  • visualize CPU during its work.