• 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
  • SignExtend.v
  • 이재하's avatar
    Single Cycle branch 명령어 몇개 추가 및 pipeline register 추가 · 41b10b57
    41b10b57
    이재하 authored 2020-05-29 22:21:48 +0900
SignExtend.v 170 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8
module SignExtend(signedinput, signedoutput);

input[15:0] signedinput;
output[31:0] signedoutput;

assign signedoutput = {{16{signedinput[15]}},signedinput};

endmodule