Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    $code |= 1 << $_ for @indicies;
    
    printf "0x%02X 0x%02X\n", $code >> 8, $code & 0xFF;
    
  2. or download this
    0x03 0x02