Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Filter by
Sorted by
Tagged with
Filter by Employee ID
0 votes
0 answers
49 views

I have a problem with the backward path in TLM. It may be due to my inexperience (I am new to TLM) but I can't see anyway an initiator can use the backward path to signal to the target to resume ...
3 votes
1 answer
78 views

I'm facing an compilation issues with sc_dt::sc_biguint data types. I tried to reproduce the issue with a simple example below #include<iostream> #include<systemc.h> using namespace std; ...
1 vote
1 answer
253 views

Given a wrapper module with some exports (sc_in, sc_out) I would like to drive multiple core module sc_in signals and allow multiple core modules to drive sc_out signals of the wrapper (one driver per ...
2 votes
1 answer
53 views

I receive the error in the title when I simulate my supercapacitor class with systemC. More precisely, the whole error message is as follows: Warning: SystemC-AMS: Initialization for tracing of: ...
1 vote
1 answer
533 views

I'm working on a convolutional neural network simulation using SystemC for a school homework. My code includes a module Conv2d with an SC_THREAD for the forward pass of a convolutional layer, which ...
1 vote
1 answer
116 views

I am using systemc to model a packet-based network. There are two parallel threads, which process random size packet. After each packet, I'd like to check whether the other thread happens to be in the ...
0 votes
1 answer
196 views

Let's say I want to write a generic SystemC module which does some algorithm processing on fixed point data of various representations, so I implement it as as module template where the fixed point ...
0 votes
0 answers
40 views

Coming accross declaration of 'class T' error. I have this code: #include "systemc.h" template <class T> class FIFO_READ_HS: public sc_module, public sc_fifo_in_if<T> { ...
-1 votes
1 answer
408 views

I am building systemC environment in Mac m1. I finished the whole process of systemC build and check and installation. All example cases passed in command line. However, when I tried to integrate the ...
-1 votes
1 answer
115 views

With 2 switches s1,s2 and 3 Lights l1 l2 l3. pressing s1 or s2 should switch on l1. Next step if I press s1, l1(off) and l2(on) or if I press s2, l1(off) and l3(on). Final state is on press of any ...
4 votes
2 answers
1k views

I'm trying to install SystemC on mac (x86, macOs 13.0.1). I followed the steps described in the docs: $ cd path/to/systemc-2.3.3 $ mkdir objdir $ cd objdir $ export CXX=g++ $ ../configure But when I ...
-1 votes
1 answer
141 views

I have a thread which is sensitive to an array of ports. In this thread I want to find out which port had triggered this thread so that i can read the value of that port? Is there a way to determine ...
1 vote
2 answers
204 views

Hi I am trying to install systemC on WSL2, when I run sudo make I seem to be getting this error Making all in src make[1]: Entering directory '/home/ryans/systemc-2.3.4/src' Makefile:77: *** missing ...
2 votes
2 answers
376 views

when I read SYSTEMC code,I find a function return int like this: static inline int rp_get_busaccess_response(struct rp_pkt *pkt) { return (pkt->busaccess_ext_base.attributes & ...
-1 votes
1 answer
166 views

SC_MODULE(example) { sc_in < int > a, b; sc_in < int > out Void process() { // Output delay implement here } SC_CTOR(example) { SC_METHOD(process); ...

15 30 50 per page
1
2 3 4 5
19