bitget

Navigation:  Language Reference > Operators > Binary >

bitget

Previous pageReturn to chapter overviewNext page

Syntax

y= a bitget b

Description

a bitget b gets the bth bit of a. Both a and b are treated as 32-bit (4-byte) integer values, so an eventual fraction will be ignored.

Example

In 20-sim, all bitwise function arguments are treated as 32-bit integers. Thus the binary representation of 30 (ignoring leading zeroes) is equal to 11110 as shown in the figure below. The operation 30 bitget 5 gets the 5th bit of 11110 which is 1.

 

 

Bitoperators

Limitations

a and b must be integers.