Help for this page

Select Code to Download


  1. or download this
     #!/usr/bin/perl -w
    
    BEGIN {undef $/;}
    ...
    open OUTFILE, ">$ARGV[0]" || die "Failed to create $ARGV[0]\n";
    print OUTFILE ($string);
    close OUTFILE;
    
  2. or download this
    //Verilog HDL for "tt", "hh" "functional"
    // if i write the word  here the script goofs up
    `timescale 1ps/10fs
    ...
        input B;
    
    endmodule
    
  3. or download this
    //Verilog HDL for "tt", "hh" "functional"
    // if i write the word  here the script goofs up
    `timescale 1ps/10fs
    ...
        input B;
    
    endmodule
    
  4. or download this
     //Verilog HDL for "tt", "hh" "functional"
    // if i write the word module here the script goofs up
    ...
        input B;
    
    endmodule
    
  5. or download this
    //Verilog HDL for "tt", "hh" "functional"
    // if i write the word module NEW(Y, A, B );
        output Y;
    ...
        input B;
    
    endmodule