bits int V {nbits 8}
| int | integer to convert |
| V | array to fill |
| nbits | number of bits to return (default=8) |
| LSB in V(0), ..., MSB in V($nbits) |
| returns list of bits: LSB in [lindex $bitlist 0], etc. |
set byte [bits 23 V]
| V is over-written if it already exists (as an array). |
| if V already exists as a scalar, an error results. |