Skip to content

Instantly share code, notes, and snippets.

@plopp
Last active January 9, 2017 11:10
Show Gist options
  • Save plopp/a5c1388cc503b2f0eb54fd5f44a9cded to your computer and use it in GitHub Desktop.
Save plopp/a5c1388cc503b2f0eb54fd5f44a9cded to your computer and use it in GitHub Desktop.
def twosComplement(val, nbits):
n = (2**nbits)
if(val > (n/2-1)):
return val-n
else:
return val
print twosComplement(64123,16)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment