|
Message
From: OpenCores CVS Agent<cvs@o...>
Date: Wed Jan 26 17:50:13 CET 2005
Subject: [cvs-checkins] MODIFIED: sc2v ...
Date: 00/05/01 26:17:50 Modified: sc2v/examples fsm.cpp md5.cpp md5.h Log: Version 0.2.5. View ChangeLog Revision Changes Path 1.3 +5 -2 sc2v/examples/fsm.cpp http://www.opencores.org/cvsweb.shtml/sc2v/examples/fsm.cpp.diff?r1=1.2&r2=1.3 (In the diff below, changes in quantity of whitespace are not shown.) Index: fsm.cpp =================================================================== RCS file: /cvsroot/jcastillo/sc2v/examples/fsm.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- fsm.cpp 17 Jan 2005 11:04:43 -0000 1.2 +++ fsm.cpp 26 Jan 2005 16:50:10 -0000 1.3 @@ -1,5 +1,8 @@ #include "systemc.h" +#define HOLA 1 +#define CONCAT 1 + void fsm::regs(){ if(rst.read()){ state.write(S0); @@ -15,7 +18,7 @@ sc_uint<2> c; next_state.write(state.read()); a.write(0); - b.write(0); + b.write(HOLA); #ifdef CONCAT c.write((a.range(1,0),b.range(1,0))); @@ -24,7 +27,7 @@ #endif switch((int)state.read()){ - case S0 : + case S0 : //Case 0 if(input1.read()){ next_state.write(S1); a.write(true); 1.3 +0 -0 sc2v/examples/md5.cpp http://www.opencores.org/cvsweb.shtml/sc2v/examples/md5.cpp.diff?r1=1.2&r2=1.3 (In the diff below, changes in quantity of whitespace are not shown.) Index: md5.cpp =================================================================== RCS file: /cvsroot/jcastillo/sc2v/examples/md5.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- md5.cpp 20 Dec 2004 17:49:05 -0000 1.2 +++ md5.cpp 26 Jan 2005 16:50:11 -0000 1.3 @@ -43,8 +43,8 @@ // CVS Revision History // // $Log: md5.cpp,v $ -// Revision 1.2 2004/12/20 17:49:05 jcastillo -// Version 0.2 +// Revision 1.3 2005/01/26 16:50:11 jcastillo +// Version 0.2.5. View ChangeLog // // Revision 1.1.1.1 2004/10/08 14:04:10 jcastillo // First import 1.3 +0 -0 sc2v/examples/md5.h http://www.opencores.org/cvsweb.shtml/sc2v/examples/md5.h.diff?r1=1.2&r2=1.3 (In the diff below, changes in quantity of whitespace are not shown.) Index: md5.h =================================================================== RCS file: /cvsroot/jcastillo/sc2v/examples/md5.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- md5.h 20 Dec 2004 17:49:05 -0000 1.2 +++ md5.h 26 Jan 2005 16:50:11 -0000 1.3 @@ -43,8 +43,8 @@ // CVS Revision History // // $Log: md5.h,v $ -// Revision 1.2 2004/12/20 17:49:05 jcastillo -// Version 0.2 +// Revision 1.3 2005/01/26 16:50:11 jcastillo
+// Version 0.2.5. View ChangeLog
//
// Revision 1.1.1.1 2004/10/08 14:04:10 jcastillo
// First import
|
 |