aboutsummaryrefslogtreecommitdiff
path: root/boot/load.c
diff options
context:
space:
mode:
authorMarvin Borner2021-03-20 19:55:51 +0100
committerGitHub2021-03-20 19:55:51 +0100
commit5132bac014d63331acf61bb60b9254023f76b869 (patch)
tree8e2946b7a6630da13ee403c787f77270aeb6185d /boot/load.c
parent435231378798819304eef427bad8e77dffea85df (diff)
parentb96c27bba0b242fc860fc9a2fcb63f121312fa7e (diff)
Merged ELF loading
Diffstat (limited to 'boot/load.c')
-rw-r--r--boot/load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/load.c b/boot/load.c
index 34c6af8..4a6f3db 100644
--- a/boot/load.c
+++ b/boot/load.c
@@ -336,7 +336,7 @@ void *read_inode(struct inode *in)
if (!num_blocks)
return 0;
- void *buf = (void *)0x50000;
+ void *buf = (void *)0x9000;
//assert(buf != 0);
int indirect;