■ByteからBitへ変換
Byte(バイト)からBit(ビット)へ変換するには8を乗算すればよい。
1 Byte = 8 Bit
function Byte_to_Bit(n) { return n * 8; }
[目次に戻る]