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

Subversion Repositories pci

[/] [pci/] [tags/] [rel_7/] [rtl/] [verilog/] [pci_delayed_write_reg.v] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 77 mihad
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  File name "delayed_write_reg.v"                             ////
4
////                                                              ////
5
////  This file is part of the "PCI bridge" project               ////
6
////  http://www.opencores.org/cores/pci/                         ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Miha Dolenc (mihad@opencores.org)                     ////
10
////                                                              ////
11
////  All additional information is avaliable in the README       ////
12
////  file.                                                       ////
13
////                                                              ////
14
////                                                              ////
15
//////////////////////////////////////////////////////////////////////
16
////                                                              ////
17
//// Copyright (C) 2001 Miha Dolenc, mihad@opencores.org          ////
18
////                                                              ////
19
//// This source file may be used and distributed without         ////
20
//// restriction provided that this copyright statement is not    ////
21
//// removed from the file and that any derivative work contains  ////
22
//// the original copyright notice and the associated disclaimer. ////
23
////                                                              ////
24
//// This source file is free software; you can redistribute it   ////
25
//// and/or modify it under the terms of the GNU Lesser General   ////
26
//// Public License as published by the Free Software Foundation; ////
27
//// either version 2.1 of the License, or (at your option) any   ////
28
//// later version.                                               ////
29
////                                                              ////
30
//// This source is distributed in the hope that it will be       ////
31
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
32
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
33
//// PURPOSE.  See the GNU Lesser General Public License for more ////
34
//// details.                                                     ////
35
////                                                              ////
36
//// You should have received a copy of the GNU Lesser General    ////
37
//// Public License along with this source; if not, download it   ////
38
//// from http://www.opencores.org/lgpl.shtml                     ////
39
////                                                              ////
40
//////////////////////////////////////////////////////////////////////
41
//
42
// CVS Revision History
43
//
44
// $Log: not supported by cvs2svn $
45
// Revision 1.3  2002/02/01 15:25:12  mihad
46
// Repaired a few bugs, updated specification, added test bench files and design document
47
//
48
// Revision 1.2  2001/10/05 08:14:28  mihad
49
// Updated all files with inclusion of timescale file for simulation purposes.
50
//
51
// Revision 1.1.1.1  2001/10/02 15:33:46  mihad
52
// New project directory structure
53
//
54
//
55
 
56
`include "pci_constants.v"
57
 
58
// synopsys translate_off
59
`include "timescale.v"
60
// synopsys translate_on
61
 
62
module pci_delayed_write_reg
63
(
64
        reset_in,
65
        req_clk_in,
66
        comp_wdata_out,
67
        req_we_in,
68
        req_wdata_in
69
);
70
 
71
// system inputs
72
input reset_in,
73
          req_clk_in ; // request clock input
74
 
75
output [31:0] comp_wdata_out ; // data output
76
 
77
input req_we_in ; // write enable input
78
input [31:0] req_wdata_in ; // data input - latched with posedge of req_clk_in when req_we_in is high
79
 
80
reg [31:0] comp_wdata_out ;
81
 
82
// write request operation
83
always@(posedge req_clk_in or posedge reset_in)
84
begin
85
        if (reset_in)
86
                comp_wdata_out <= #`FF_DELAY 32'h0000_0000 ;
87
        else
88
        if (req_we_in)
89
                comp_wdata_out <= #`FF_DELAY req_wdata_in ;
90
end
91
 
92
endmodule // DELAYED_WRITE_REG

powered by: WebSVN 2.1.0

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