diff options
author | Marvin Borner | 2021-01-07 18:48:40 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-07 18:48:40 +0100 |
commit | 8fb2349d12e21868c77f2c975dbd958eb2536499 (patch) | |
tree | 59c6c5e60d701e3b317717a9352c3b0c47c8d0db /boot | |
parent | 016a9b0ed1d1246cb490d475bf35c2f502c70b2c (diff) |
Several things
Sorry :D
Diffstat (limited to 'boot')
-rw-r--r-- | boot/entry.asm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/boot/entry.asm b/boot/entry.asm index cf632b1..1f421ea 100644 --- a/boot/entry.asm +++ b/boot/entry.asm @@ -238,7 +238,7 @@ video_map: disk_error_msg db "Disk error!", NEWLINE, RETURN, NULL lba_error_msg db "LBA error!", NEWLINE, RETURN, NULL video_error_msg db "Video error!", NEWLINE, RETURN, NULL -found_msg db "FOUND!", NEWLINE, RETURN, NULL +found_msg db "Found file!", NEWLINE, RETURN, NULL ; Filenames loader_name db "load.bin" @@ -310,7 +310,7 @@ stage_two: .found: mov si, found_msg call print ; Print success message - mov ax, word [bx + EXT2_INODE_OFFSET] ; Get inode number from dirent + mov ax, [bx + EXT2_INODE_OFFSET] ; Get inode number from dirent ; Calculate address: (EXT2_INODE_TABLE_LOC + (inode - 1) * EXT2_INODE_SIZE) dec ax ; (inode - 1) mov cx, EXT2_INODE_SIZE ; Prepare for multiplication @@ -320,6 +320,8 @@ stage_two: mov cx, [bx + EXT2_COUNT_OFFSET] ; Number of blocks for inode cmp cx, 0 je disk_error + cmp cx, 256 + 12 ; BLOCK_SIZE / sizeof(u32) = 256 + jge disk_error lea di, [bx + EXT2_POINTER_OFFSET] ; Address of first block pointer mov bx, 0x4000 ; Load to this address mov [dest + 2], bx |