-
Notifications
You must be signed in to change notification settings - Fork 2
/
prescaler.v
32 lines (25 loc) · 971 Bytes
/
prescaler.v
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
`ifndef __PRESCALER_V__
`define __PRESCALER_V__
//-------------------------------------------------------------
//-- Prescaler de N bits
//-- (C) BQ. August 2015. Written by Juan Gonzalez (obijuan)
//-------------------------------------------------------------
//-- Prescaler generico, para ralentizar las señales de reloj
//-------------------------------------------------------------
//-- Entrada: señal de reloj de entrada
//-- Salida: Señal de reloj de salida, con menor frecuencia
module prescaler(input wire clk_in, output wire clk_out);
wire clk_in;
wire clk_out;
//-- Numero de bits del prescaler (por defecto)
parameter N = 22;
//-- Registro para implementar contador de N bits
reg [N-1:0] count = 0;
//-- El bit más significativo se saca por la salida
assign clk_out = count[N-1];
//-- Contador: se incrementa en flanco de subida
always @(posedge(clk_in)) begin
count <= count + 1;
end
endmodule
`endif // __PRESCALER_V__