OpenCores
URL https://opencores.org/ocsvn/aes128_trojan/aes128_trojan/trunk

Subversion Repositories aes128_trojan

[/] [aes128_trojan/] [trunk/] [counter.v] - Rev 3

Go to most recent revision | Compare with Previous | Blame | View Log

`timescale 1ns/1ps 
 
module counter(clk,counter_out);
input clk;
output reg [3:0]counter_out; 
 
reg [23:0]count; 
 
initial begin
	counter_out = 4'b0000;
	count = 24'd0;
end
 
always@(posedge clk) begin
	if(count == 24'd50000000) begin
		counter_out <= counter_out + 1'b1;
		count <= 24'd0;
	end else count <= count + 1'b1;
end
endmodule
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.