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

Subversion Repositories dma_axi

[/] [dma_axi/] [trunk/] [src/] [dma_axi64/] [dma_axi64_core0_ch_fifo.v] - Diff between revs 2 and 4

Only display areas with differences | Details | Blame | View Log

Rev 2 Rev 4
 
/////////////////////////////////////////////////////////////////////
 
////                                                             ////
 
////  Author: Eyal Hochberg                                      ////
 
////          eyal@provartec.com                                 ////
 
////                                                             ////
 
////  Downloaded from: http://www.opencores.org                  ////
 
/////////////////////////////////////////////////////////////////////
 
////                                                             ////
 
//// Copyright (C) 2010 Provartec LTD                            ////
 
//// www.provartec.com                                           ////
 
//// info@provartec.com                                          ////
 
////                                                             ////
 
//// This source file may be used and distributed without        ////
 
//// restriction provided that this copyright statement is not   ////
 
//// removed from the file and that any derivative work contains ////
 
//// the original copyright notice and the associated disclaimer.////
 
////                                                             ////
 
//// This source file is free software; you can redistribute it  ////
 
//// and/or modify it under the terms of the GNU Lesser General  ////
 
//// Public License as published by the Free Software Foundation.////
 
////                                                             ////
 
//// This source is distributed in the hope that it will be      ////
 
//// useful, but WITHOUT ANY WARRANTY; without even the implied  ////
 
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR     ////
 
//// PURPOSE.  See the GNU Lesser General Public License for more////
 
//// details. http://www.gnu.org/licenses/lgpl.html              ////
 
////                                                             ////
 
/////////////////////////////////////////////////////////////////////
//---------------------------------------------------------
//---------------------------------------------------------
//-- File generated by RobustVerilog parser
//-- File generated by RobustVerilog parser
//-- Version: 1.0
//-- Version: 1.0
//-- Invoked Fri Mar 25 23:36:57 2011
//-- Invoked Fri Mar 25 23:36:57 2011
//--
//--
//-- Source file: dma_ch_fifo.v
//-- Source file: dma_ch_fifo.v
//---------------------------------------------------------
//---------------------------------------------------------
 
 
 
 
 
 
module dma_axi64_core0_ch_fifo (CLK,WR,RD,WR_ADDR,RD_ADDR,DIN,BSEL,DOUT);
module dma_axi64_core0_ch_fifo (CLK,WR,RD,WR_ADDR,RD_ADDR,DIN,BSEL,DOUT);
 
 
 
 
   input                      CLK;
   input                      CLK;
 
 
   input               WR;
   input               WR;
   input               RD;
   input               RD;
   input [5-3-1:0] WR_ADDR;
   input [5-3-1:0] WR_ADDR;
   input [5-3-1:0] RD_ADDR;
   input [5-3-1:0] RD_ADDR;
   input [64-1:0]      DIN;
   input [64-1:0]      DIN;
   input [8-1:0]      BSEL;
   input [8-1:0]      BSEL;
   output [64-1:0]     DOUT;
   output [64-1:0]     DOUT;
 
 
 
 
   reg [64-1:0]           Mem [4-1:0];
   reg [64-1:0]           Mem [4-1:0];
   wire [64-1:0]       BitSEL;
   wire [64-1:0]       BitSEL;
   wire [64-1:0]       DIN_BitSEL;
   wire [64-1:0]       DIN_BitSEL;
   reg [64-1:0]           DOUT;
   reg [64-1:0]           DOUT;
 
 
     assign               BitSEL = {{8{BSEL[7]}} , {8{BSEL[6]}} , {8{BSEL[5]}} , {8{BSEL[4]}} , {8{BSEL[3]}} , {8{BSEL[2]}} , {8{BSEL[1]}} , {8{BSEL[0]}}};
     assign               BitSEL = {{8{BSEL[7]}} , {8{BSEL[6]}} , {8{BSEL[5]}} , {8{BSEL[4]}} , {8{BSEL[3]}} , {8{BSEL[2]}} , {8{BSEL[1]}} , {8{BSEL[0]}}};
 
 
 
 
   assign               DIN_BitSEL = (Mem[WR_ADDR] & ~BitSEL) | (DIN & BitSEL);
   assign               DIN_BitSEL = (Mem[WR_ADDR] & ~BitSEL) | (DIN & BitSEL);
 
 
   always @(posedge CLK)
   always @(posedge CLK)
     if (WR)
     if (WR)
       Mem[WR_ADDR] <= #1 DIN_BitSEL;
       Mem[WR_ADDR] <= #1 DIN_BitSEL;
 
 
 
 
   always @(posedge CLK)
   always @(posedge CLK)
     if (RD)
     if (RD)
       DOUT <= #1 Mem[RD_ADDR];
       DOUT <= #1 Mem[RD_ADDR];
 
 
 
 
endmodule
endmodule
 
 
 
 
 
 

powered by: WebSVN 2.1.0

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