• 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
  • clock.v
  • 이재하's avatar
    샘플 명령어 · 19cd8e02
    19cd8e02 Browse Files
    이재하 authored 2020-06-17 11:46:58 +0900
clock.v 186 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module Clock(clk);

output reg clk;

initial clk = 0;
always #50 clk = ~clk;
endmodule


module Clock_pipeline(clk);

output reg clk;

initial clk = 0;
always #10 clk = ~clk;
endmodule