• v0.1 9f4f4a554a

    v0.1 Stable

    guynamedzero released this 2026-05-13 22:04:51 -07:00 | 2 commits to main since this release

    As described in guynamedzero/zcd#1

    To use, run testProject and specify test1.bin as the input file, and pass any valid path for the output file. This will not generate any meaningful data, but should still serve as a demonstration on how the program functions and/or will function in the future. If you would like to make your own testing file, the file must start with a version number that is less than or equal to the programs version, this is encoded by a sequence of alternating bytes numerical and FF bytes, terminated with two FF bytes, for example, 03 FF 01 FF 0F FF FF decodes to 3.1.15. After this sequence is where the actual data is stored, each sequence of bytes must end with FF, which signifies that all of the previous bytes will have the power operation applied, and then added to the next operation.

    Another example of a theoretically complete file that will work with this version is defined as follows: 00 FF 01 FF FF 12 34 56 FF 78 9A FF . The program will read this as: version 0.1, raise 3 to the power of (12 34 56 converted to integer), + 3 to the power of (78 9A converted to integer).

    Downloads