Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
.
  • Loading branch information
cag-uconn committed Nov 8, 2023
1 parent fcb78f1 commit 4a81952
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file removed pa3/.DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions pa3/src/sim_stages.c
Expand Up @@ -35,12 +35,12 @@ struct State fetch(void) {
fetch_out.inst_addr = pc;

/* Pipeline must be flushed */
if (0) {
if (/** TODO: Your logic for pipe flush here **/) {
return nop;
}

/* Pipeline is stalled */
else if (0){
else if (/**TODO: Your logic for pipe stall here **/){
return fetch_out;
}

Expand Down

0 comments on commit 4a81952

Please sign in to comment.