.antilog FOR I%, 0, 255 EQUB INT(2^((I% / 2 + 128) / 16) + 0.5) DIV 256 NEXTName: antilog [Show more] Type: Variable Category: Maths (Arithmetic) Summary: Binary antilogarithm tableContext: See this variable in context in the source code Variations: See code variations for this variable in the different versions References: This variable is used as follows: * FMLTU uses antilog * LL28 uses antilog
At byte n, the table contains: 2^((n / 2 + 128) / 16) / 256 which equals: 2^(n / 32 + 8) / 256