Commit 7d9439d2 authored by mullers's avatar mullers
Browse files

UInt13 and Oct13 and Bit13 - Zero constants added

parent 79a66747
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -212,6 +212,7 @@
    const UInt8   c_uInt8Zero := 0;
    const UInt8   c_uInt8Zero := 0;
    const UInt10  c_uInt10Zero := 0;
    const UInt10  c_uInt10Zero := 0;
    const UInt12  c_uInt12Zero := 0;
    const UInt12  c_uInt12Zero := 0;
	const UInt13  c_uInt13Zero := 0;
    const UInt14  c_uInt14Zero := 0;
    const UInt14  c_uInt14Zero := 0;
    const UInt16  c_uInt16Zero := 0;
    const UInt16  c_uInt16Zero := 0;
    const UInt24  c_uInt24Zero := 0;
    const UInt24  c_uInt24Zero := 0;
+2 −0
Original line number Original line Diff line number Diff line
@@ -71,6 +71,7 @@
    const Bit5 c_5ZeroBits := int2bit(0,5);
    const Bit5 c_5ZeroBits := int2bit(0,5);
    const Bit6 c_6ZeroBits := int2bit(0,6);
    const Bit6 c_6ZeroBits := int2bit(0,6);
    const Bit8 c_8ZeroBits := int2bit(0,8);
    const Bit8 c_8ZeroBits := int2bit(0,8);
	const Bit13 c_13ZeroBits := int2bit(0,13);
    const Bit14 c_14ZeroBits := int2bit(0,14);
    const Bit14 c_14ZeroBits := int2bit(0,14);
    const Bit64 c_64ZeroBits := int2bit(0,64);
    const Bit64 c_64ZeroBits := int2bit(0,64);


@@ -131,6 +132,7 @@
    const Oct8    c_8ZeroBytes := int2oct(0,8);
    const Oct8    c_8ZeroBytes := int2oct(0,8);
	const Oct9    c_9ZeroBytes := int2oct(0,9);
	const Oct9    c_9ZeroBytes := int2oct(0,9);
    const Oct12   c_12ZeroBytes := int2oct(0,12);
    const Oct12   c_12ZeroBytes := int2oct(0,12);
	const Oct13   c_13ZeroBytes := int2oct(0,13);
    const Oct16   c_16ZeroBytes := int2oct(0,16);
    const Oct16   c_16ZeroBytes := int2oct(0,16);
    const Oct20   c_20ZeroBytes := int2oct(0,20);
    const Oct20   c_20ZeroBytes := int2oct(0,20);