URL
https://opencores.org/ocsvn/raptor64/raptor64/trunk
Subversion Repositories raptor64
[/] [raptor64/] [trunk/] [rtl/] [verilog/] [lib/] [delay.v] - Rev 3
Compare with Previous | Blame | View Log
/* =============================================================== (C) 2006 Robert Finch All rights reserved. rob@birdcomputer.ca delay.v - delays signals by so many clock cycles This source code is free for use and modification for non-commercial or evaluation purposes, provided this copyright statement and disclaimer remains present in the file. If you do modify the code, please state the origin and note that you have modified the code. NO WARRANTY. THIS Work, IS PROVIDEDED "AS IS" WITH NO WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED. The user must assume the entire risk of using the Work. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY INCIDENTAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES WHATSOEVER RELATING TO THE USE OF THIS WORK, OR YOUR RELATIONSHIP WITH THE AUTHOR. IN ADDITION, IN NO EVENT DOES THE AUTHOR AUTHORIZE YOU TO USE THE WORK IN APPLICATIONS OR SYSTEMS WHERE THE WORK'S FAILURE TO PERFORM CAN REASONABLY BE EXPECTED TO RESULT IN A SIGNIFICANT PHYSICAL INJURY, OR IN LOSS OF LIFE. ANY SUCH USE BY YOU IS ENTIRELY AT YOUR OWN RISK, AND YOU AGREE TO HOLD THE AUTHOR AND CONTRIBUTORS HARMLESS FROM ANY CLAIMS OR LOSSES RELATING TO SUCH UNAUTHORIZED USE. =============================================================== */ module delay1 #(parameter WID = 1) ( input clk, input ce, input [WID:1] i, output reg [WID:1] o ); always @(posedge clk) if (ce) o <= i; endmodule module delay2 #(parameter WID = 1) ( input clk, input ce, input [WID:1] i, output reg [WID:1] o ); reg [WID:1] r1; always @(posedge clk) if (ce) r1 <= i; always @(posedge clk) if (ce) o <= r1; endmodule module delay3 #(parameter WID = 1) ( input clk, input ce, input [WID:1] i, output reg [WID:1] o ); reg [WID:1] r1, r2; always @(posedge clk) if (ce) r1 <= i; always @(posedge clk) if (ce) r2 <= r1; always @(posedge clk) if (ce) o <= r2; endmodule module delay4 #(parameter WID = 1) ( input clk, input ce, input [WID:1] i, output reg [WID:1] o ); reg [WID:1] r1, r2, r3; always @(posedge clk) if (ce) r1 <= i; always @(posedge clk) if (ce) r2 <= r1; always @(posedge clk) if (ce) r3 <= r2; always @(posedge clk) if (ce) o <= r3; endmodule module delay5 #(parameter WID = 1) ( input clk, input ce, input [WID:1] i, output reg [WID:1] o ); reg [WID:1] r1, r2, r3, r4; always @(posedge clk) if (ce) r1 <= i; always @(posedge clk) if (ce) r2 <= r1; always @(posedge clk) if (ce) r3 <= r2; always @(posedge clk) if (ce) r4 <= r3; always @(posedge clk) if (ce) o <= r4; endmodule