~ruther/verilog-riscv-semestral-project

verilog-riscv-semestral-project/src/cpu.sv -rw-r--r-- 3.5 KiB
79c7be5c — Rutherther 2 years ago main
chore: remove unnecessary executable flags

Closes #4.
914e69e6 — Rutherther 2 years ago
refactor: save pc + 4 in stages
586cf712 — Rutherther 2 years ago
chore: clearer naming
af6386a7 — Rutherther 2 years ago
fix: jumping should flush two registers
66d14163 — Rutherther 2 years ago
feat: move jumping to execute stage
f8e4e3ed — Rutherther 2 years ago
Merge pull request #1 from Rutherther/feat/pipeline

Implement pipeline
docs: better document the stage code, organize it better
89310129 — Rutherther 2 years ago
feat: implement pipeline
c682cc06 — Rutherther 2 years ago
feat: implement ebreak

Breaks the processor, can
exit the testcase
a400aceb — Rutherther 2 years ago
feat: make RAM word aligned, add byte_enable

Support sb, sh, lb, lh using byte enable
instead of non-word aligned reads and writes.
9f4ac4dc — Rutherther 2 years ago
fix: jump according to zero flag, not LSB zero!!
acf0f724 — Rutherther 2 years ago
feat: implement sb, sh, lb, lh support via masking
7ad51766 — Rutherther 2 years ago
fix: remove duplicit instruction and pc in cpu
8f631f51 — Rutherther 2 years ago
refactor: move memory out of cpu

The cpu will have external memory,
that will allow for better testing
capabilities, and also makes more
sense.
82d9e44f — Rutherther 2 years ago
feat: add cpu top level entity