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