Skip to content

Latest commit

 

History

History
31 lines (17 loc) · 940 Bytes

README.md

File metadata and controls

31 lines (17 loc) · 940 Bytes

RISC Processsor

  • Verilog implementation of a 24-bit RISC processor using a self developed ISA.

Datapath

alt text

Instruction Set Architecture (ISA)

alt text

Test Runs

1) LW   r0  r1  00000001                    //load word in memory location 1+$(r0) in r1 
   ADD  r0  r1  r2                          //add  $(r0) and $(r1) and store result in r2
   JUMP  0000000000000011                   //  jump to location 11<<2  i.e  1100 
 

alt text

2)BEQ 101100 00100 00110 00000011

alt text