-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPC.v
More file actions
32 lines (30 loc) · 661 Bytes
/
Copy pathPC.v
File metadata and controls
32 lines (30 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 20:04:36 05/02/2016
// Design Name:
// Module Name: PC
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module PC(CLK, PC);
input CLK;
output reg [7:0] PC;
initial
PC = 8'b11111100;
always @(posedge CLK)
begin
PC = PC + 8'b00000100;
end
endmodule