Skip to content

Instantly share code, notes, and snippets.

@edenc
Created January 25, 2013 17:53
Show Gist options
  • Select an option

  • Save edenc/4636471 to your computer and use it in GitHub Desktop.

Select an option

Save edenc/4636471 to your computer and use it in GitHub Desktop.
use warnings;
use strict;
my $comp3 = 0x01234D;
my $dec = $comp3 >> 4;
$dec = sprintf "%x", $dec;
if($comp3 & 0xD) {
$dec *= -1;
} elsif(!$comp3 & 0xC) {
print "error!"
}
print $dec, "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment