• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / KNW_Project2

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • KNW_Project2
  • Project
  • MIPS
  • ShiftLeft2.v
  • 이재하's avatar
    오타 수정 및 stall 기능 추가(data hazard) · 45064ffb
    45064ffb
    이재하 authored 2020-06-08 22:02:37 +0900
ShiftLeft2.v 154 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
module ShiftLeft2(shiftinput, shiftoutput);
input[31:0] shiftinput;
output[31:0] shiftoutput;

assign shiftoutput = {shiftinput[29:0], 2'b00};

endmodule