update comments

main
serr 2025-01-15 19:26:36 +03:00
parent 62b9d2e70d
commit c545bfbca5
1 changed files with 2 additions and 1 deletions

View File

@ -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));