1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-18 05:28:09 +00:00

Updated INSTRUX size in setup.py (pybddisasm).

This commit is contained in:
Andrei Vlad LUTAS 2020-09-10 11:12:51 +03:00
parent 33078e4670
commit fc62fc0b36
2 changed files with 2 additions and 2 deletions

View File

@ -1672,7 +1672,7 @@ int main(
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_RED|FOREGROUND_INTENSITY);
printf(" light red relative offset, immediate, address\n");
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_BLUE|FOREGROUND_GREEN|FOREGROUND_RED);
printf("Instrux size: %zx bytes\n", sizeof(INSTRUX));
printf("Instrux size: 0x%zx bytes\n", sizeof(INSTRUX));
ret = -1;
goto cleanup_and_exit;
}

View File

@ -13,7 +13,7 @@ from codecs import open
VERSION = (0, 1, 3)
LIBRARY_VERSION = (1, 29, 0)
LIBRARY_INSTRUX_SIZE = 856
LIBRARY_INSTRUX_SIZE = 864
packages = ['pybddisasm']
requires = ['setuptools']