OpenCores
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/] [DualPathFPAdderMappedConversions/] [d_ff.v] - Blame information for rev 19

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 11 constantin
`timescale 1ns / 1ps
2
//////////////////////////////////////////////////////////////////////////////////
3 19 constantin
// Company:     UPT
4
// Engineer:    Constantina-Elena Gavriliu
5 11 constantin
// 
6
// Create Date:    09:39:58 02/04/2013 
7
// Design Name: 
8
// Module Name:    d_ff
9
// Project Name: 
10
// Target Devices: 
11
// Tool versions: 
12 19 constantin
// Description: D flip-flop
13 11 constantin
//
14
// Dependencies: 
15
//
16
// Revision: 
17
// Revision 0.01 / File Created
18
// Additional Comments: 
19
//
20
//////////////////////////////////////////////////////////////////////////////////
21
 
22
module d_ff (clk, rst, d, q);
23
        parameter SIZE = 24;
24
        input clk;
25
        input rst;
26
        input [SIZE-1 : 0] d;
27
        output reg [SIZE-1 : 0] q;
28
 
29
        always
30
                @(posedge clk, posedge rst)
31
        begin
32
                if (rst)
33
                        q <= {SIZE{1'b0}};
34
                else
35
                        q <= d;
36
        end
37
endmodule

powered by: WebSVN 2.1.0

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