Help for this page

Select Code to Download


  1. or download this
    test$ grep '#/INT' dir1list.pl -A1 -B3
              }
              my $rule = Path::Iterator::Rule->new;
              if ($id =~ /^([0-9A-F]{2})/) {
                $rule->and( sub { m#/INT $1# } );
              }
    
  2. or download this
    test$ ./dir1list.pl --listing TheList/INTERRUP.LST --source source --f
    +ind --summary --link 21.58
    From "[Link command line switch]": Hyperlink selected: INT 21/AH=58h
    Found: "INT 21 - DOS 2.11+ - GET OR SET MEMORY ALLOCATION STRATEGY (AH
    +=58h/AL=00h,01h)"
    ...
    Use of uninitialized value $1 in regexp compilation at ./dir1list.pl l
    +ine 1166.
    Searching file INT 2158 DOS 5 GET OR SET UMB LINK STATE.txt
    source/Interrupt List/INT 21 DOS Function Calls/INT 2158 DOS 5 GET OR 
    +SET UMB LINK STATE.txt
    
  3. or download this
    test$ grep '#/INT' minuslst.pl -A1 -B3
              my $rule = Path::Iterator::Rule->new;
              if ($id =~ /^([0-9A-F]{2})/) {
                my $int - $1;
                $rule->and( sub { m#/INT $int# } );
              }
    
  4. or download this
    test$ ./minuslst.pl --listing TheList/INTERRUP.LST --source source --f
    +ind --summary --link 21.58
    Useless use of subtraction (-) in void context at ./minuslst.pl line 1
    +166.
    From "[Link command line switch]": Hyperlink selected: INT 21/AH=58h
    ...
    Use of uninitialized value $int in regexp compilation at ./minuslst.pl
    + line 1167.
    Searching file INT 2158 DOS 5 GET OR SET UMB LINK STATE.txt
    source/Interrupt List/INT 21 DOS Function Calls/INT 2158 DOS 5 GET OR 
    +SET UMB LINK STATE.txt
    
  5. or download this
    test$ grep '#/INT' dirlist.pl -A1 -B3
              my $rule = Path::Iterator::Rule->new;
              if ($id =~ /^([0-9A-F]{2})/) {
                my $int = $1;
                $rule->and( sub { m#/INT $int# } );
              }
    
  6. or download this
    test$ ./dirlist.pl --listing TheList/INTERRUP.LST --source source --fi
    +nd --summary --link 21.58
    From "[Link command line switch]": Hyperlink selected: INT 21/AH=58h
    Found: "INT 21 - DOS 2.11+ - GET OR SET MEMORY ALLOCATION STRATEGY (AH
    +=58h/AL=00h,01h)"
    ...
    Searching file INT 2158 DOS 5 GET OR SET UMB LINK STATE.txt
    source/Interrupt List/INT 21 DOS Function Calls/INT 2158 DOS 5 GET OR 
    +SET UMB LINK STATE.txt
    test$