diff --git a/analysis_function.h b/analysis_function.h index f6d19ca..2840e0b 100644 --- a/analysis_function.h +++ b/analysis_function.h @@ -25,7 +25,8 @@ byte* AF_address(byte* f) { return real_address; } -// Print bytes from address to address+size (Use AF_address() to get function ptr) +// Print bytes from address to address+size +// (Use AF_address() to get func ptr and AF_size() to get func size) int32_t AF_print_bytes(byte* a, int32_t size) { for (int32_t i = 0; i < size; ++i) { printf("%02X ", *(a + i));