URL
https://opencores.org/ocsvn/xilinx_virtex_fp_library/xilinx_virtex_fp_library/trunk
Subversion Repositories xilinx_virtex_fp_library
[/] [xilinx_virtex_fp_library/] [trunk/] [GeneralPrecMAFMappedConversions/] [d_ff.v] - Rev 16
Compare with Previous | Blame | View Log
`timescale 1ns / 1ps ////////////////////////////////////////////////////////////////////////////////// // Company: // Engineer: // // Create Date: 09:39:58 02/04/2013 // Design Name: // Module Name: d_ff // Project Name: // Target Devices: // Tool versions: // Description: // // Dependencies: // // Revision: // Revision 0.01 / File Created // Additional Comments: // ////////////////////////////////////////////////////////////////////////////////// module d_ff (clk, rst, d, q); parameter SIZE = 24; input clk; input rst; input [SIZE-1 : 0] d; output reg [SIZE-1 : 0] q; always @(posedge clk, posedge rst) begin if (rst) q <= {SIZE{1'b0}}; else q <= d; end endmodule