update comments
parent
62b9d2e70d
commit
c545bfbca5
|
@ -25,7 +25,8 @@ byte* AF_address(byte* f) {
|
||||||
return real_address;
|
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) {
|
int32_t AF_print_bytes(byte* a, int32_t size) {
|
||||||
for (int32_t i = 0; i < size; ++i) {
|
for (int32_t i = 0; i < size; ++i) {
|
||||||
printf("%02X ", *(a + i));
|
printf("%02X ", *(a + i));
|
||||||
|
|
Loading…
Reference in New Issue