代码搜索:Arbiter
找到约 430 项符合「Arbiter」的源代码
代码结果 430
www.eeworm.com/read/389033/8552407
cpp arbiter.cpp
/************************************************************************
* file name: arbiter.c
* description: implementation of arbiter module.
*
* modification history
* -----------------
www.eeworm.com/read/389033/8552410
h arbiter.h
/************************************************************************
* file name: arbiter.h
* description: header file of arbiter module.
*
* modification history
* --------------------
www.eeworm.com/read/389033/8552413
cpp arbiter.cpp
/************************************************************************
* file name:
* description:
*
* modification history
* --------------------
* 2004-1-13 16:48:17, created by zh
www.eeworm.com/read/389033/8552417
h arbiter.h
/************************************************************************
* file name:
* description:
*
* modification history
* --------------------
* 2004-1-13 16:38:39, created by zhuwe
www.eeworm.com/read/287040/8729281
v arbiter.v
module arbiter(
rst,
clk_dsp,
db_dsp,
wr_dsp,
rd_dsp,
ce_dsp,
oe_dsp,
ram_rdb,
ram_rab,
s_raw_req,
s_raw_ack,
ram_wdb,
ram_wab,
ram_wen,
r_req,
r_ack,
mask_send_ack
);
i
www.eeworm.com/read/384663/8852193
v arbiter.v
module arbiter(
rst,
clk_dsp,
db_dsp,
wr_dsp,
rd_dsp,
send_raw,
ram_rdb,
ram_rab,
s_raw_req,
s_raw_ack,
ram_wdb,
ram_wab,
ram_wen,
r_req,
r_ack
);
input rst;
input clk_dsp;
www.eeworm.com/read/371229/9560830
v arbiter.v
// Copyright 2007 Altera Corporation. All rights reserved.
// Altera products are protected under numerous U.S. and foreign patents,
// maskwork rights, copyrights and other intellectual property
www.eeworm.com/read/424942/10390500
v arbiter.v
module arbiter(
rst,
clk_dsp,
db_dsp,
wr_dsp,
rd_dsp,
ce_dsp,
oe_dsp,
ram_rdb,
ram_rab,
s_raw_req,
s_raw_ack,
ram_wdb,
ram_wab,
ram_wen,
r_req,
r_ack,
mask_send_ack
);
i
www.eeworm.com/read/436550/7767956
cpp arbiter.cpp
#include "arbiter.h"
request *
arbiter::arbitrate(const request_vec &requests)
{
int i;
// at least one request is here
request *best_request = requests[0];
if (m_verbose)
www.eeworm.com/read/436550/7767977
h arbiter_if.h
#ifndef __arbiter_if_h
#define __arbiter_if_h
#include
#include "types.h"
class arbiter_if
: public virtual sc_interface
{
public:
virtual request *
arbitrate(con