forked from revivalizer/rekkrunchy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,17 +13,16 @@ Feel free to get in touch at [email protected] | |
|
||
*WARNING:* You need NASM version 2.10.07 for this to compile. | ||
|
||
------------------------------------------------------------------------------------------------------------- | ||
|
||
Changes by BoyC / Conspiracy: | ||
# Changes by BoyC / Conspiracy: | ||
|
||
* added .kkp export for byte exact pack ratio, analyzer tool to be released soon, file format described below | ||
* fixed PE header so that the Microsoft exe signing tool actually recognizes produced binaries as executables | ||
* As the result of the PE header fix, expanded the MZ header with some custom art | ||
|
||
KKP file format: | ||
# KKP file format: | ||
Used to describe a binary file with all its contents and compression statistics, including symbol info | ||
|
||
``` | ||
4 bytes: FOURCC: 'KK64' | ||
4 bytes: size of described binary in bytes (Ds) | ||
4 bytes: number of source code files (Cc) | ||
|
@@ -52,4 +51,5 @@ Ds times: (for each byte of the described binary) | |
2 bytes: symbol index | ||
double: packed size | ||
2 bytes: source code line | ||
2 bytes: source code file index | ||
2 bytes: source code file index | ||
``` |