Skip to content

A Python model for a RISC-V Single Cycle Processor and simple Assembler

Notifications You must be signed in to change notification settings

junior-jl/riscv-processor-model

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RISCV Single Cycle Processor model - RV32I

Usage

usage: main.py [-h] [-f FILE] [-r R] [-d D] [-reg] [-mem] [-inst] [-gui]

optional arguments:
  -h, --help            show this help message and exit
  -f FILE, --file FILE  file to run
  -r R                  print specified register value
  -d D                  print value on specified data memory address
  -reg                  print register values
  -mem                  print data memory values
  -inst                 print instruction memory values
  -gui                  open simple GUI

Steps of a cycle

  1. Instruction Fetch
  2. Instruction Decode
  3. Execute
  4. Memory
  5. Write Back

Improvements and features

  • Support for instructions with or without commas
  • Support for register API names
  • Support for parenthesis notation, e.g. sw x3, 0(x4) instead of sw x3, x4, 0
  • Support for other representations of immediates (hex, bin)
  • Support for comments (Not with pseudoinstructions yet)
  • Support for pseudo-instructions (except la)
  • Support for labels
  • Support for 'pseudo' jal and jalr. Ex: jal offset -> jal ra offset
  • CLI execution and flags
  • Simple GUI
  • Make it a Python Package
  • Documentation

Current Status of Instructions

R Type mnemonic STATUS NOTE
ADD add rd rs1 rs2 OK
AND and rd rs1 rs2 OK
OR or rd rs1 rs2 OK
SET IF LESS THAN slt rd rs1 rs2 OK
SET IF LESS THAN UNSIGNED sltu rd rs1 rs2 OK
SHIFT LEFT sll rd rs1 rs2 OK
SHIFT RIGHT srl rd rs1 rs2 OK
SHIFT RIGHT ARITHMETIC sra rd rs1 rs2 OK
SUBTRACT sub rd rs1 rs2 OK NEGATIVE NUMBERS WORKING PROPERLY NOW
XOR xor rd rs1 rs2 OK
I Type
ADD IMMEDIATE addi rd rs1 imm OK
AND IMMEDIATE andi rd rs1 imm OK
JUMP AND LINK REGISTER jalr rd rs1 imm OK
LOAD BYTE lb rd rs1 imm OK
LOAD BYTE UNSIGNED lbu rd rs1 imm OK
LOAD HALF UNSIGNED lhu rd rs1 imm OK
LOAD HALFWORD lh rd rs1 imm OK
LOAD WORD lw rd rs1 imm OK
OR IMMEDIATE ori rd rs1 imm OK
SET IF LESS THAN IMM slti rd rs1 imm OK
SET IF LESS THAN IMM UNS sltiu rd rs1 imm OK
SHIFT LEFT IMMEDIATE slli rd rs1 shamt OK
SHIFT RIGHT ARITH IMM srai rd rs1 shamt OK
SHIFT RIGHT IMMEDIATE srli rd rs1 shamt OK
XOR IMMEDIATE xori rd rs1 imm OK
S Type
STORE BYTE sb rs1 rs2 imm OK
STORE HALFWORD sh rs1 rs2 imm OK
STORE WORD sw rs1 rs2 imm OK
U Type
ADD UPPER IMM TO PC auipc rd imm OK
LOAD UPPER IMMEDIATE lui rd imm OK
SB Type
BRANCH IF EQUAL beq rs1 rs2 imm OK
BRANCH IF GREATER OR EQUAL THAN bge rs1 rs2 imm OK
BRANCH IF GREATER OR EQUAL THAN UNSIGNED bgeu rs1 rs2 imm OK
BRANCH IF LESS THAN blt rs1 rs2 imm OK
BRANCH IF LESS THAN UNSIGNED bltu rs1 rs2 imm OK
BRANCH IF NOT EQUAL bne rs1 rs2 imm OK
UJ Type
JUMP AND LINK jal rd imm OK

Current Status of Pseudoinstructions

Instruction mnemonic STATUS NOTE
NO OPERATION nop OK
LOAD IMMEDIATE li rd imm OK
COPY REGISTER mv rd rs OK
ONE'S COMPLEMENT not rd rs OK
TWO'S COMPLEMENT neg rd rs OK
BRANCH IF EQUAL TO ZERO beqz rs offset OK
BRANCH IF NOT EQUAL TO ZERO bnez rs offset OK
JUMP j offset OK
JUMP REGISTER jr rs OK
RETURN FROM SUBROUTINE ret OK
LOAD ADDRESS la rd symbol TODO

Diagram of the processor

diagram

Problems

  • Negative sums and subs
  • Negative jumps
  • Comments on pseudoinstructions
  • Tests not passing together when running pytest on terminal, but pass on Pycharm. Also, all tests pass individually.
  • Infinite loops

About

A Python model for a RISC-V Single Cycle Processor and simple Assembler

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published