/* ------------------------------------------------------------------------
   constant: how to generate signals with specific value


   Note: do NOT use "const" as identifier because it's a C++ key word !!!
   ------------------------------------------------------------------------ */

#include "Sim.h"

void simnet()
{
   Signal d(8, 0x23);       // 8 means 8 signals (bits), value = 23 Hex
                            // 23 Hex =  0010 0011

   Probe ( "bc", d);        // Probe 
}



