Help for this page

Select Code to Download


  1. or download this
    if ( $INPUT_DATA =~ /module (\w+) /) {
        my $circuit_name = $1;
        print "circuit name = $circuit_name\n";
    }
    
  2. or download this
    if ( $INPUT_DATA =~ /module (\w+) /) {
        print "circuit name = $1\n";
    }
    
  3. or download this
    #!/usr/bin/perl
    #levelization.plx
    ...
    for my $gate (@gates) {
        print "$gate->{gate_name}: $gate->{gate_level}\n";
    }
    
  4. or download this
    my @array;
    # Push the value 1 onto @array
    ...
    print $array[2], "\n";          # 4
    print $array[4][1], "\n";       # bob
    print $array[5]{inp_1}, "\n";   # net_7