Search the Community
Showing results for tags 'systemc 2.3.0'.
-
Hello all, I'm simulating MOESI protocol for L1 caches in SystemC. I'm getting different results for the same source code when running in SystemC 2.3.0 and SystemC 2.3.1 versions in different machines. Could anyone kindly pass some light on this topic? Machine1: Linux 3.13, Ubuntu 14.04, SystemC 2.3.1, Intel Pentium Dual Core processor. Output - Machine 1: CPU Reads RHit RMiss Writes WHit WMiss Hitrate 0 6 0 6 4 0 4 0.000000 1 34 0 34 22 0 22 0.000000 2 35 0 35 43 0 43 0.000000 3 39 2 37
- 3 replies
-
- SystemC
- Inconsistent results
-
(and 3 more)
Tagged with:
-
hello, I want install SystemC 2.3.0 in my Ubuntu 14.04 (64 bit),and enter these below commands: mkdir objdir -> cd objdir -> export CXX=g++ -> ../configure -> make when i enter "make" command this error is occured: /bin/bash: -c: line 1: syntax error: unexpected end of file make: *** [all-recursive] Error 1 I will be glad if anyone can help me
-
Hello everyone, I’m new in systemc and in this forum. I successfully downloaded and installed systemc-2.3.0 on MSVC-2010 (Windows 7) I can compile and run the examples. BUT when I write an own program it doesn’t work. For example I wrote this simple program. #include "systemc.h"#define WIDTH 4 SC_MODULE(adder) { sc_in<sc_uint<WIDTH> > a, b; sc_out<sc_uint<WIDTH> > sum; void do_add() { sum.write(a.read() + b.read()) } SC_CTOR(adder) { SC_METHOD(do_add); sensitive << a << b; } }; systemc.lib(sc_main_main.o
- 2 replies
-
- msvs10
- visual studio 10
-
(and 3 more)
Tagged with: