generated from cepdnaclk/eYY-XXX-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/cepdnaclk/e20-co502-RV32IM_…
- Loading branch information
Showing
1 changed file
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
___ | ||
# DELETE THIS INSTRUCTIONS AND ADD A SHORT INTRODUCTION ABOUT YOUR PROJECT | ||
___ | ||
#RISC-V Computer Architecture with Pipelined Implementation | ||
|
||
## Please refer the instructions in below URL: | ||
This project focuses on implementing a RISC-V computer architecture with a pipelined design. RISC-V is a free and open Instruction Set Architecture (ISA) designed to support a wide range of applications, from microcontrollers to high-performance processors. Its simplicity, modularity, and extensibility make it an ideal platform for both academic and industrial purposes. | ||
|
||
In this implementation, we develop a pipelined architecture to enhance instruction throughput by overlapping the execution of multiple instructions. Key components include: | ||
|
||
Instruction Fetch (IF): Retrieves instructions from memory. | ||
Instruction Decode (ID): Decodes instructions and reads register data. | ||
Execute (EX): Performs arithmetic, logical, and memory operations. | ||
Memory Access (MEM): Handles data transfer between registers and memory. | ||
Write Back (WB): Updates register values with execution results. | ||
|
||
This repository includes the RTL design for core components, the register file, pipeline stages, and testbenches for verification. | ||
|
||
https://projects.ce.pdn.ac.lk/docs/how-to-add-a-project |