Skip to content

🔌 A 32-bit MIPS CPU supporting 57 instructions for NSCSCC (Loongson Cup), Summer of 2017.

License

Notifications You must be signed in to change notification settings

mrdrivingduck/mips32-CPU

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mips-32 CPU

🔌 A 32-bit MIPS CPU supporting 57 instructions for 1st NSCSCC (Loongson Cup), Summer of 2017.

Author: @mrdrivingduck & @zonghuaxiansheng


File Organization

  • /soc: SoC project runs on Xilinx© Vivado 2017.1 IDE
  • /src: HDL source code of CPU implemented by Verilog HDL
    • /src/controller: controller part of CPU
    • /src/Datapath: data path part of CPU
  • /test: testing files on instruction RAM and data RAM
    • /test/func_test: function test of 240,000 instructions
    • /test/pref_test: performance test of 10 benchmark programs
    • /test/memory_game: a program to test the whole SoC system

Hardware Environment

Experiment box offered by Loongson with an FPGA of Xilinx© Artex7.

About the CPU

  • Five-stage Pipeline
  • Single issue
  • Little-endian
  • Always in kernel mode
  • Support 57 MIPS instructions
  • Integrated with several Xilinx© IP core

Supporting Instructions

Instruction Format
ADD ADD rd, rs, rt
ADDI ADDI rt, rs, immediate
ADDU ADDU rd, rs, rt
ADDIU ADDIU rt, rs, immeidate
SUB SUB rd. rs, rt
SUBU SUBU rd, rs, rt
SLT SLT rd, rs, rt
SLTI SLTI rt, rs, immediate
SLTU SLTU rd, rs, rt
SLTIU SLTIU rt, rs, immediate
DIV DIV rs, rt
DIVU DIVU rs,rt
MULT MULT rs, rt
MULTU MULTU rs, rt
AND AND rd, rs, rt
ANDI ANDI rt, rs, immediate
LUI LUI rt,immediate
NOR NOR rd, rs, rt
OR OR rd, rs, rt
ORI ORI rt, rs, immediate
XOR XOR rd, rs, rt
XORI XORI rt, rs, immediate
SLL SLL rd, rt, sa
SLLV SLLV rd, rs, rt
SRA SRA rd, rt, sa
SRAV SRAV rd, rs, rt
SRL SRL rd, rt, sa
SRLV SRLV rd, rs, rt
BEQ BEQ rs, rt, offset
BNE BNE rs, rt, offset
BGEZ BGEZ rs, offset
BGTZ BGTZ rs, offset
BLEZ BLEZ rs, offset
BLTZ BLTZ rs, offset
BLTZAL BLTZAL rs, offset
BGEZAL BGEZAL rs, offset
J J target
JAL JAL target
JR JR rs
JALR JALR rd, rs
MFHI MFHI rd
MFLO MFLO rd
MTHI MTHI rs
MTLO MTLO rs
BREAK BREAK
SYSCALL SYSCALL
LB LB rt, offset(base)
LBU LBU rt, offset(base)
LH LH rt, offset(base)
LHU LHU rt, offset(base)
LW LW rt, offset(base)
SB SB rt, offset(base)
SH SH rt, offset(base)
SW SW rt, offset(base)
ERET ERET
MFC0 MFC0
MTC0 MTC0

Division of Work

License

Copyright © 2017, Jingtang Zhang, Hua Zong. (MIT License)

About

🔌 A 32-bit MIPS CPU supporting 57 instructions for NSCSCC (Loongson Cup), Summer of 2017.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages