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

Subversion Repositories dma_ahb

[/] [dma_ahb/] [trunk/] [src/] [dma_ahb64/] [dma_ahb64_core0_ahbm_timeout.v] - Blame information for rev 4

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 4 eyalhoc
/////////////////////////////////////////////////////////////////////
2
////                                                             ////
3
////  Author: Eyal Hochberg                                      ////
4
////          eyal@provartec.com                                 ////
5
////                                                             ////
6
////  Downloaded from: http://www.opencores.org                  ////
7
/////////////////////////////////////////////////////////////////////
8
////                                                             ////
9
//// Copyright (C) 2010 Provartec LTD                            ////
10
//// www.provartec.com                                           ////
11
//// info@provartec.com                                          ////
12
////                                                             ////
13
//// This source file may be used and distributed without        ////
14
//// restriction provided that this copyright statement is not   ////
15
//// removed from the file and that any derivative work contains ////
16
//// the original copyright notice and the associated disclaimer.////
17
////                                                             ////
18
//// This source file is free software; you can redistribute it  ////
19
//// and/or modify it under the terms of the GNU Lesser General  ////
20
//// Public License as published by the Free Software Foundation.////
21
////                                                             ////
22
//// This source is distributed in the hope that it will be      ////
23
//// useful, but WITHOUT ANY WARRANTY; without even the implied  ////
24
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR     ////
25
//// PURPOSE.  See the GNU Lesser General Public License for more////
26
//// details. http://www.gnu.org/licenses/lgpl.html              ////
27
////                                                             ////
28
/////////////////////////////////////////////////////////////////////
29 2 eyalhoc
//---------------------------------------------------------
30
//-- File generated by RobustVerilog parser
31
//-- Version: 1.0
32
//-- Invoked Fri Mar 25 23:33:00 2011
33
//--
34
//-- Source file: dma_core_ahbm_timeout.v
35
//---------------------------------------------------------
36
 
37
 
38
 
39
module dma_ahb64_core0_ahbm_timeout(clk,reset,HTRANS,HREADY,ahb_timeout);
40
 
41
   input               clk;
42
   input               reset;
43
 
44
   input [1:0]               HTRANS;
45
   input               HREADY;
46
 
47
   output               ahb_timeout;
48
 
49
 
50
   wire               HVALID;
51
   reg [`TIMEOUT_BITS-1:0]    counter;
52
 
53
 
54
 
55
   assign               HVALID      = HTRANS[1];
56
   assign               ahb_timeout = (counter == 'd0);
57
 
58
 
59
   always @(posedge clk or posedge reset)
60
     if (reset)
61
       counter <= #1 {`TIMEOUT_BITS{1'b1}};
62
     else if (HVALID & HREADY)
63
       counter <= #1 {`TIMEOUT_BITS{1'b1}};
64
     else if (HVALID)
65
       counter <= #1 counter - 1'b1;
66
 
67
 
68
 
69
endmodule
70
 
71
 
72
 
73
 
74
 

powered by: WebSVN 2.1.0

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