Arm/bits2

From ASMBits

arm/bits1Previous

A signed (two's complement) number of n bits can represent values between -2n-1 and +(2n-1-1), inclusive. Write a function that returns how many bits are needed to represent a given number, in signed binary representation.

unsigned int bits(int num);


Expected solution length: Around 5 lines.

Sample Input

0x1000

Sample Output

r0=14

Think carefully about corner cases...

Write your solution here

Upload a source file...