URL
https://opencores.org/ocsvn/bluespec-h264/bluespec-h264/trunk
Subversion Repositories bluespec-h264
[/] [bluespec-h264/] [trunk/] [src/] [IMemEDDecoupled.bsv] - Rev 66
Go to most recent revision | Compare with Previous | Blame | View Log
//**********************************************************************
// Interface for Memory for Entropy Decoding
//----------------------------------------------------------------------
//
//
//
import H264Types::*;
import ClientServer::*;
import GetPut::*;
interface IMemEDDecoupled#(numeric type index_size, numeric type data_size);
interface Put#(MemReq#(index_size,data_size)) request_store;
interface Put#(MemReq#(index_size,data_size)) request_load;
interface Get#(MemResp#(data_size)) response;
endinterface
Go to most recent revision | Compare with Previous | Blame | View Log