C++ library used for system-level modeling of hardware designs. Used by engineers in making architectural decisions, modeling performance and enabling software/firmware development concurrently with traditional hardware development.
2
votes
4answers
191 views
while(a==b); vs while(a==b) {;}
Is there a difference between the following pieces of code:
while (a==b);
while (a==b) {;}
Does it make an impact on compiler or execution time?
Background for this questions: Currently the FW ...
0
votes
1answer
48 views
Conversion from Systemc to VHDL or VERILOG
I designed a circuit using RTL SystemC library. This circuit works fine and i can simulate it properly. Now i want to deploy it into an FPGA and i'm looking for a way to convert my systemc code into ...
0
votes
1answer
27 views
Implementing a mod 12 counter in SystemC
How do I go about implementing a modulus 12 counter in SystemC? I am new to the library and do not have much experience with it. please help.
0
votes
0answers
94 views
Using SystemC in Visual Studio 2010
I am new to SystemC and I just compiled it for using it with VS2010 using this tutorial. But when I tried to debug the following program:
#include <systemc.h>
SC_MODULE (systemcTest) {
SC_CTOR ...
0
votes
1answer
46 views
no matching function for call to sc_trace in systemc
I am using systemc to do the simulation and I got an error message telling that
g++ -I/opt/Xilinx-14.2/Vivado_HLS/2012.2/Linux_x86_64/tools/systemc/include/ -o testBench.exe testBench.cc ...
4
votes
1answer
58 views
OpenCV in SystemC
I have been using both OpenCV and SystemC for several applications with great satisfaction.
Now, I have this application where I need to display images with OpenCV in a SystemC simulation ...
1
vote
1answer
41 views
What is the best way to check whether a signal is a valid one in SystemC?
I am having a little problem in a SystemC simulation because in one component I did forget to check for signals integrity and my simulation breaks because of this. Basically I do not handle situations ...
1
vote
1answer
64 views
SystemC 2.3.0 support modeling power domains and abstract schedulers
the new SystemC library 2.3.0 was released in July, 2012.It was reported to be able to support modeling of concepts such as power domains and abstract schedulers. Has anyone checked or worked on how ...
0
votes
1answer
69 views
Send event trigger to a module in SystemC
What I want to do feels like sending av event from one module to another (like pressing a button). But as I have searched it seems that it should be done in an other way becuase I haven't found any ...
0
votes
0answers
68 views
SystemC syncing multiple clocks
I have roughly the following clock scheme set up in sc_main:
double refclk_period = 8000;
double ck1_ratio = 10;
double ck2_ratio = 5;
double ck3_ratio = 6;
sc_clock refclk("refclk", refclk_period, ...
2
votes
0answers
106 views
Porting SystemVerilog style clock division and driving to SystemC
I am porting a System Verilog model to SystemC and I am not sure of the best way to model this phase locked loop clock driving scheme. It seems to me in SV driving the clock is a bit of a manual ...
3
votes
0answers
175 views
SystemVerilog fork/join w/ “run()” type functions and SystemC
Sorry in advance this question is not very code-specific, and I believe has to do more with convention than a solution that is technically right or wrong. Possibly it can be done more than one way.
I ...
1
vote
1answer
60 views
Loading SystemC modules dynamically at run-time
In my simulator framework, the HW/SW modules are implemented in SystemC and pre-built. The platform to be simulated is described in XML. The simulator core parses the XML, determines the modules used ...
1
vote
3answers
449 views
How to implement a multi-dimensional associative array in C++?
I am porting some SystemVerilog to SystemC/C++ and am having trouble with a multidimensional associative array. Consider the declaration of this array in SV.
// assume typ_one, typ_two, typ_three are ...
0
votes
0answers
28 views
linux.gcc-4.5.2/architecture.gcc-4.5.2.a(liblisa_static.o): section name section has wrong type: 0
Does anyone know what the above error message mean?
Apparently I never had this till using gcc4.5.2 to build and link code. I don't know what is liblisa_static.
Please advise.
2
votes
1answer
81 views
Reference to class is ambiguous when compiling with g++4.5.2
I need a bit of help here: when using g++ 4.1 to build my code, there was no error regarding "reference to class is ambiguous". It only happens when using g++4.5.2 to compile the same code, and here ...
2
votes
3answers
136 views
Safely cast/convert SystemC struct of bit/logic vectors to a single bit/logic vectors
I am porting from code from SystemVerilog to SystemC. SV is easily able to interpret packed structs of bits/logic as a single bit/logic vector. For example:
typedef struct logic {
logic [31:0] ...
1
vote
2answers
208 views
What is the minimum length of time/cycles a System Verilog wait() statement will wait?
I have a SystemVerilog task I am trying to port to SystemC. The body of the task simply waits on a boolean expression and then pushes onto a queue. The SystemC wait mechanism doesn't work quite the ...
1
vote
1answer
67 views
Error reported (expression must have a constant value) while parameterizing sc_lv
I am working on System C. In a class
First I have declared a integer:
int G_WIDTH;
Then I am using G_WIDTH in :
sc_in < sc_lv <G_WIDTH> > a;
When I am trying to simulate it. ...
0
votes
2answers
626 views
Code example for a TLM fifo [closed]
I am new to TLM.
Someone can give me an example code for connecting two processes by a TLM fifo?
Thank you
1
vote
1answer
66 views
enable debugf in SystemC
I was looking at the source of SystemC and saw that there are things like:
#define DEBUGF \
if (0) std::cout << "sc_cor_pthread.cpp(" << __LINE__ << ") "
and later on there ...
0
votes
1answer
1k views
Error while loading shared libraries: libsystemc-2.3.0.so
I am a new user to Linux and I am trying to install systemc-2.3.0 library on my machine (Fedora 16). I have followed every instructions very carefully, mentioned in the INSTALL file of the library but ...
0
votes
1answer
128 views
Getting the names for VCD traced signals in SystemC
SystemC allows signals (or members etc.) to be traced via the sc_trace function, the result being a VCD file that can be used in other programs. The naming of these signals is rather arbitrary though, ...
2
votes
2answers
239 views
In systemC how do you get the sc_time in the end_of_simulation routine
I would like to report what the time is at the end of a simulation. I thought that I would use the end_of_simulation routine, and just do a sc_timestamp in the routine to do this.
The problem is ...
0
votes
2answers
451 views
Writing the main program of a D flip-flop
I'm new to systemC programming i'm writing a D flip-flop but i couldn't find a way to write the main program and to enter signals (din , clock and dout in my case) :
this is my code :
#include ...
0
votes
2answers
163 views
SystemC constructor, class
I am new in systemc. There is one confusion that I am having.
I am creating a sc_module(hello_world). The sc_ctor(hello_world) has nothing between the curly braces and I just have a simple void ...
0
votes
2answers
171 views
SystemC error, using visual c++ 2008
I am using systemC with visual C++ 2008. I wrote a simple hello world program. However I am getting this error repeatedly:
warning C4996: 'sprintf': This function or variable may be unsafe.
Why ...
2
votes
2answers
1k views
Installing SystemC 2.2.0, compilation with GCC 4.6 and package for Fedora
How to install SystemC on Fedora 15?
Problems:
no RPM package (licensing problems)
does not compile with 4.6
even with -fpermissive (clang doesn't compile your modules)
1
vote
2answers
390 views
Instruction set simulator(SystemC) for MIPS architecture
Goodday SOers:
Does anybody know if there is a open source MIPS instruction set simulator (in C++ or SystemC preferably)?
I googled dozens of links and there is just no open ISS of MIPS cpu. Then ...
1
vote
1answer
205 views
Problems handling sc_logic values in SystemC
I'm writing an application in order to simulate a hardware system using SystemC libraries.
My problem is handling the sc_logic type.
Consider a simple module
SC_MODULE(MyModule) {
sc_in_clk clk;
...
2
votes
2answers
257 views
Problem handling signals in SystemC simulation application
I am simulating a CPU and I'm doing this using high level simulation tools. SystemC is a good resource for these purposes. I'm using two modules:
DataPath
Memory
CPU datapath is modeled as a ...
1
vote
1answer
437 views
How to disable SystemC runtime warnings?
I have successfully compiled a SystemC application that I use in order to simulate a CPU when running on a general architecture.
Well my problem is just that, when running the application in order to ...
2
votes
2answers
373 views
Specifying signal delays in SystemC as clause AFTER in VHDL
I have a problem in SystemC trying to write a signal after some time passes...
Consider the following:
process (clk)
begin
-- Updating my signal, out signal, in order to get result, but ...
1
vote
2answers
347 views
Understanding types in SystemC
I am a beginner in SystemC programming and there is one thing I noticed (looking in the SystemC official documentation): all types that I used to deal with in vhdl simulations have not been "ported" ...
1
vote
2answers
204 views
Datatype problem in simple IF statement in VHDL
I have a really weird problem and I am not 100% why the compiler is complaining.
The code looks as follows:
variable a : std_logic_vector(2 downto 0);
variable b : std_logic;
....
if (a = "100") AND ...
0
votes
1answer
395 views
SystemC: passing events between modules
In SystemC, what is the syntax to use events as module input/outputs.
I have a worker module and I want to send it an event to preempt what it's currently doing from a scheduler module.
...
5
votes
4answers
425 views
Right language for hardware modelling
We have been developing "Hardware Models" using C.
Our present work-flow:
The data-structures in the "hardware
model" are made "Bit accurate", and
then tested.
The "Bit Accurate Hardware model" is
...
4
votes
2answers
457 views
Using existing unit test frameworks with SystemC
I am working on a project in SystemC and want to incorporate unit testing. Is it possible to use existing unit test frameworks with SystemC?
I ask this because it seems like the SystemC modules only ...
0
votes
4answers
265 views
selective access to bits on datatypes with C++
I'm using C++ for hardware-based model design with SystemC. SystemC as a C++ extension introduces specific datatypes useful for signal and byte descriptions.
How can I access the first bits of a ...
1
vote
2answers
213 views
Can SystemC diplay circuits as a drawing?
I need to design some digital circuits , but it kills me drawing them by hand. I've searched a easier way to do them, and found VHDL and what's more interesting SystemC. The last one is pretty nice ...
0
votes
2answers
415 views
SystemC Seg Fault on sc_core::sc_in<bool>::read()
I am having a repeating seg fault while using SystemC. During initialization I set a value to 0. During operation of a testbench I am setting this value to 1 in a module (proc). This is a sc_signal ...
1
vote
2answers
187 views
Is it possible to use System C data types in C++ without the entire System C kernel?
System C provides arbitrary length integer types that can be manipulated either as numbers (i.e. with support for artihmetic) or as bit-vectors (i.e. with support for logic operations and working with ...
1
vote
2answers
255 views
Does system C support tri-state logic?
Does System C support tri-state logic? That is, bits that can get 0, 1 or X, where X means "unknown"?
If it does, does it also support vectors that can contain Xes, including logic and arithmetic ...
2
votes
2answers
355 views
Installing systemc SCV library on x86-64 machine
When I tried to install the SCV library, I came accross with the following problem:
"checking build system type... Invalid configuration x86_64-unknown-linux-gnu': machinex86_64-unknown' not ...
14
votes
8answers
2k views
VHDL/Verilog related programming forums?
Hardware design with VHDL or Verilog is more like programming nowadays. However, I see SO members are not so actively talking about VHDL/Verilog programming.
Is there any forum dealing with hardware ...
1
vote
4answers
1k views
Compiling SystemC library in Mingw32
I have been trying to compile systemC library in Mingw32 and I am getting an error when I run the "configure" command which says that the architecture is not supported. Anyone out there solved this ...
1
vote
4answers
1k views
verilog or systemc for testbench
I am assigned with the task of verifying some verilog based RTL code. Now, coding the RTL testbench using verilog seems to be very difficult (for me). So I would like to try one of the following.
- ...
8
votes
7answers
893 views
Serialization of objects: no thread state can be involved, right?
I am looking hard at the basic principles of storing the state of an executing program to disk, and bringing it back in again. In the current design that we have, each object (which is a C-level ...
