Skip to content

shawntsai0312/NTUEE_COMPUTER_ARCHITECTURE_23FALL_FINAL_PROJECT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Computer Architecture 23Fall Final Project

author : B10901176 蔡弘祥, B10901163 張顥譽

Before running

cd 01_RTL/
source 00_license.sh

How To Run

source 01_run.sh I[k]
k instruction
0 leaf
1 fact
2 hw1
3 sort
Example
source 01_run.sh I0
# CPU will execute "leaf"

How To Clean files

source ./01_RTL/99_clean_up.sh

Results

k instruction without cache with cache
0 leaf 77 79
1 fact 440 375
2 hw1 400 376
3 sort 1324 561

Some Github Commands

  • Remember to save and git add, git commit before downloading
  1. upload
git add .
git commit -m "your comments"
git push
  1. download
git fetch origin <branchName>
git checkout main
git merge origin/<branchName>
  1. new branch
git checkout -b <branchName>
  1. switch branch
git checkout <branchName>
  1. delete a local branch
git branch -D <branchName>
  1. delete a remote branch
git push origin --delete <remoteBranchName>
  1. merge branch
git checkout main
git merge <branchName>