TypedCircuit is a TypeScript library designed for advanced bitwise operations, perfect for low-level programming, digital electronics simulations, or understanding bitwise arithmetic. It offers a comprehensive set of types and functions for handling bits, half-bytes, bytes, and more.
const testAddOperation: Add<1900, 124> = 2024;
Includes Bit
, HalfByte
, Byte
, Byte2
, and more for effective bitwise operations.
const testHalfByte: HalfByte = [1, 0, 1, 0];
const testByte: Byte = [[1, 0, 1, 0], [1, 1, 0, 0]];
Supports And
, Or
, Xor
operations for bit manipulation.
const testBitAndOperation: And<1, 0> = 0;
const testBitOrOperation: Or<0, 1> = 1;
const testBitXorOperation: Xor<1, 1> = 0;
Provides HA
(Half Adder), FA
(Full Adder), Adder8
, and Adder16
for arithmetic operations.
type BitRepr_6 = [HalfByte0, HalfByte0, HalfByte0, [0, 1, 1, 0]];
type BitRepr_11 = [HalfByte0, HalfByte0, HalfByte0, [1, 0, 1, 1]];
const testAdder16Basic: Adder16<BitRepr_6, BitRepr_11> = [
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 1],
[0, 0, 0, 1],
];
Features ToDecimal8
, ToDecimal16
, FormatDecimal8
, FormatDecimal16
for binary-to-decimal conversion and vice versa.
const testDecimalConversion8: FormatDecimal8<BitRepr_6> = "0 + 0 + 0 + 0 + 0 + 4 + 2 + 0";
const testDecimalConversion16: FormatDecimal16<BitRepr_1900> =
"0 + 0 + 0 + 0 + 0 + 1024 + 512 + 256 + 0 + 64 + 32 + 0 + 8 + 4 + 0 + 0";
Offers advanced types and operations like ToBinary16
and Add
for 16-bit arithmetic.
const testDecimalToBinary: ToBinary16<1901> = [
[0, 0, 0, 0],
[0, 1, 1, 1],
[0, 1, 1, 0],
[1, 1, 0, 1],
];
const testAddOperation: Add<1900, 203> = 2103;
yarn add -D typed-circuits
For a detailed guide on each type and function, refer to our documentation.
Contributions are welcome! Fork the repository and submit pull requests for improvements.
Licensed under the MIT license.
This updated README now includes specific examples for each major feature of the TypedCircuit library, demonstrating how to use the types and operations provided.