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

Subversion Repositories pci

[/] [pci/] [tags/] [working_demo/] [rtl/] [verilog/] [pci_target32_load_crit.v] - Blame information for rev 154

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 mihad
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  File name: pci_target32_load_crit.v                         ////
4
////                                                              ////
5
////  This file is part of the "PCI bridge" project               ////
6
////  http://www.opencores.org/cores/pci/                         ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Tadej Markovic, tadej@opencores.org                   ////
10
////                                                              ////
11
////  All additional information is avaliable in the README.txt   ////
12
////  file.                                                       ////
13
////                                                              ////
14
////                                                              ////
15
//////////////////////////////////////////////////////////////////////
16
////                                                              ////
17
//// Copyright (C) 2000 Tadej Markovic, tadej@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 6 mihad
// Revision 1.1.1.1  2001/10/02 15:33:47  mihad
46
// New project directory structure
47 2 mihad
//
48 6 mihad
//
49 2 mihad
 
50
// module is used to separate logic which uses criticaly constrained inputs from slower logic.
51
// It is used to synthesize critical timing logic separately with faster cells or without optimization
52
 
53
`include "constants.v"
54 6 mihad
`include "timescale.v"
55 2 mihad
 
56
module PCI_TARGET32_LOAD_CRIT
57
(
58
    tar_load_out_w,
59
    tar_load_out_w_irdy,
60
    load_med_reg_w,
61
    load_med_reg_w_irdy,
62
    pci_irdy_in,
63
    pci_target_load_out,
64
    load_medium_reg_out
65
);
66
 
67
input       tar_load_out_w ;            // target load signal (composed without critical signals) that don't need critical inputs
68
input       tar_load_out_w_irdy ;       // target load signal (composed without critical signals) that needs AND with critical
69
                                                                        // IRDY input
70
input       load_med_reg_w ;            // load reg signal (composed without critical signals) that don't need critical inputs
71
input       load_med_reg_w_irdy ;       // load reg signal (composed without critical signals) that needs AND with critical
72
                                                                        // IRDY input
73
input       pci_irdy_in ;                       // critical constrained input signal
74
 
75
output          pci_target_load_out ;   // pci target load output
76
output          load_medium_reg_out ;   // load medium register output
77
 
78
// pci target load output with preserved hierarchy for minimum delay!
79
assign  pci_target_load_out = (tar_load_out_w || (tar_load_out_w_irdy && ~pci_irdy_in)) ;
80
// load medium register output with preserved hierarchy for minimum delay!
81
assign  load_medium_reg_out = (load_med_reg_w || (load_med_reg_w_irdy && ~pci_irdy_in)) ;
82
 
83
 
84
endmodule

powered by: WebSVN 2.1.0

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