Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yehiasharawy/mips-architecture

Implementation of a MIPS processor architecture for a single cycle using VHDL
https://github.com/yehiasharawy/mips-architecture

mips mips-architecture vhdl xilinx-ise

Last synced: 6 days ago
JSON representation

Implementation of a MIPS processor architecture for a single cycle using VHDL

Awesome Lists containing this project

README

        

# MIPS Architecture
Implementing a MIPS processor architecture of a single cycle using Xilinx ISE tool and VHDL as a programming language.

# Green Sheet for MIPS Architecture
SCR-20230606-etmm

# Single Cycle MIPS Architecture
SCR-20230606-etiq

#Parameters used to run the architecture
### Memory File
- Memory[0]= 0x”ABCDEF00”
- Memory[1]= 0x”75746572”
- Memory[2]= 0x”20417263”
- Memory[3]= 0x”68697465”
- Memory[4] = 0x”12345678”
- Memory[5]= 0x”7F7F6D6D”
- Memory[6]= 0x”00000000”
- Memory[7]= 0x”78786A6A”
- Memory[8]= 0x”00000001”

### Register File
- $a0 = 5
- $a1 = 7

### Instructions
- add $v0, $a0, $a1
- sw $v0, 8($zero)
- lw $a2, 8($zero)
- beq $v0, $a2, Good_Processor
- slt $s1, $v0, $a2
- Good_Processor: sub $s1, $a1, $a0

# Output Simulation
![2](https://github.com/YehiaSharawy/MIPS-Architecture/assets/65984199/57ed4b1f-d5b3-435f-a53e-369ba3051946)

# Documentation
[MIPS Documentation.pdf](https://github.com/YehiaSharawy/MIPS-Architecture/files/11659017/MIPS.Project.Report.-.Yehia.Sharawy.20100519.pdf)