> compile NEMU

ysyx_22040000 李心杨
Linux calcite 6.6.19 #1-NixOS SMP PREEMPT_DYNAMIC Fri Mar  1 12:35:11 UTC 2024 x86_64 GNU/Linux
 16:08:38  up   3:14,  2 users,  load average: 0.35, 0.25, 0.31
This commit is contained in:
tracer-ysyx 2024-03-20 16:08:38 +08:00 committed by xinyangli
parent c7ce5a2d5b
commit bcc8fc731d

View file

@ -17,13 +17,13 @@ static int cmp_func_t(const void *a, const void *b) {
}
func_t *get_func(vaddr_t addr) {
int l = 0, r = func_table_len;
while(l < r) {
int l = 0, r = func_table_len - 1;
while(l <= r) {
int mid = l + (r - l) / 2;
if(func_table[mid].start <= addr) l = mid + 1;
else r = mid;
else r = mid - 1;
}
return &func_table[r];
return &func_table[l];
}
void init_elf(const char *path) {