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

Subversion Repositories dma_ahb

[/] [dma_ahb/] [trunk/] [src/] [dma_ahb32/] [dma_ahb32_core0_ahbm_timeout.v] - Rev 2

Go to most recent revision | Compare with Previous | Blame | View Log

//---------------------------------------------------------
//-- File generated by RobustVerilog parser
//-- Version: 1.0
//-- Invoked Fri Mar 25 23:31:23 2011
//--
//-- Source file: dma_core_ahbm_timeout.v
//---------------------------------------------------------
 
 
 
module dma_ahb32_core0_ahbm_timeout(clk,reset,HTRANS,HREADY,ahb_timeout);
 
   input               clk;
   input               reset;
 
   input [1:0]               HTRANS;
   input               HREADY;
 
   output               ahb_timeout;
 
 
   wire               HVALID;
   reg [`TIMEOUT_BITS-1:0]    counter;
 
 
 
   assign               HVALID      = HTRANS[1];
   assign               ahb_timeout = (counter == 'd0);
 
 
   always @(posedge clk or posedge reset)
     if (reset)
       counter <= #1 {`TIMEOUT_BITS{1'b1}};
     else if (HVALID & HREADY)
       counter <= #1 {`TIMEOUT_BITS{1'b1}};
     else if (HVALID)
       counter <= #1 counter - 1'b1;
 
 
 
endmodule
 
 
 
 
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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