Tagged Questions
The systemc tag has no wiki summary.
9
votes
7answers
734 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 ...
8
votes
7answers
648 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 ...
3
votes
4answers
280 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
...
2
votes
1answer
111 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 ...
2
votes
1answer
193 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 ...
2
votes
1answer
203 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 ...
1
vote
2answers
340 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
142 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
105 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;
...
1
vote
1answer
141 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 ...
1
vote
2answers
146 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
166 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
1answer
112 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 ...
1
vote
2answers
123 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 ...
1
vote
2answers
147 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
150 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 ...
1
vote
3answers
746 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
983 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.
- ...
0
votes
0answers
16 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
32 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 ...
0
votes
1answer
127 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.
...
0
votes
4answers
154 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 ...
0
votes
1answer
214 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 ...