代码搜索:SystemC
找到约 1,802 项符合「SystemC」的源代码
代码结果 1,802
www.eeworm.com/read/395929/2431070
d add.d
add.o add.d : add.cpp add.h mips.h ../../systemc-2.0.1/include/systemc.h \
../../systemc-2.0.1/include/systemc/kernel/sc_cmnhdr.h \
../../systemc-2.0.1/include/systemc/kernel/sc_externs.h \
../../s
www.eeworm.com/read/163678/10150176
h fifo_of_ptr.h
#ifndef fifo_of_ptr_H
#define fifo_of_ptr_H
//BEGIN fifo_of_ptr.h
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// DESCRIPTION
// This design illustrates using a FI
www.eeworm.com/read/442382/7653758
h half_adder.h
// half_adder.h
#include "systemc.h"
SC_MODULE(half_adder){
sc_in a, b;
sc_out sum, carry;
void prc_half_adder();
SC_CTOR(half_adder){
SC_METHOD(prc_half_adder)
www.eeworm.com/read/405204/11469515
h decoder3by8.h
#include "systemc.h"
SC_MODULE(decoder3by8)
{
sc_in select;
sc_out z;
void prc_decoder3by8();
SC_CTOR(decoder3by8)
{SC_METHOD(prc_decoder3by8);
sensitive
www.eeworm.com/read/405204/11469537
h decoder3by8.h
#include "systemc.h"
SC_MODULE(decoder3by8)
{
sc_in select;
sc_out z;
void prc_decoder3by8();
SC_CTOR(decoder3by8)
{SC_METHOD(prc_decoder3by8);
sensitive
www.eeworm.com/read/272859/4214764
defs makefile.defs
## Variable that points to SystemC installation path
SYSTEMC = $(SYSTEMC_HOME)
SCV = $(SCV_HOME)
INCDIR = -I. -I.. -I../../bench -I$(SYSTEMC)/include -I$(SCV)/include
LIBDIR = -L. -L.. -L$(SYSTEMC)/
www.eeworm.com/read/272859/4214790
defs makefile.defs
## Variable that points to SystemC installation path
SYSTEMC = $(SYSTEMC_HOME)
SCV = $(SCV_HOME)
INCDIR = -I. -I.. -I../../bench -I$(SYSTEMC)/include -I$(SCV)/include
LIBDIR = -L. -L.. -L$(SYSTEMC)/
www.eeworm.com/read/395929/2431080
d imm2word.d
imm2word.o imm2word.d : imm2word.cpp imm2word.h mips.h \
../../systemc-2.0.1/include/systemc.h \
../../systemc-2.0.1/include/systemc/kernel/sc_cmnhdr.h \
../../systemc-2.0.1/include/systemc/kernel/
www.eeworm.com/read/163678/10150576
h fifo_of_smart_ptr.h
#ifndef fifo_of_ptr_H
#define fifo_of_ptr_H
//BEGIN fifo_of_smart_ptr.h
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// DESCRIPTION
// This design illustrates usin
www.eeworm.com/read/405827/11456074
h driver.h
#include "systemc.h"
SC_MODULE(driver)
{
sc_inoutd_s,d_sm;
sc_ind_direct;
void prc_driver();
SC_CTOR(driver)
{
SC_THREAD(prc_driver);
}
};