Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $opCode = ($byte & 0b11100000) >> 5;
    
    printf "Opcode is 0x%02X\n", $opCode;
    
  2. or download this
    Opcode is 0x01