aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--src/entry.asm10
2 files changed, 9 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5fe442c..1bb0c5e 100644
--- a/Makefile
+++ b/Makefile
@@ -20,8 +20,10 @@ CC = cross/opt/bin/i686-elf-gcc
LD = cross/opt/bin/i686-elf-ld
AS = nasm
+CSFLAGS = -fno-stack-protector -fomit-frame-pointer -ffunction-sections -fdata-sections -Wl,--gc-sections -mpreferred-stack-boundary=2 -falign-functions=1 -falign-jumps=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-math-errno -fno-unroll-loops -fmerge-all-constants -fno-ident -ffast-math
+
# TODO: Use lib as external library
-CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-pic -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Isrc/lib/inc/ -Isrc/inc/ -c
+CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-pic -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Isrc/lib/inc/ -Isrc/inc/ -c
ASFLAGS = -f elf32
diff --git a/src/entry.asm b/src/entry.asm
index 4b8b247..5fdf4c2 100644
--- a/src/entry.asm
+++ b/src/entry.asm
@@ -311,8 +311,9 @@ kernel_load:
xor ax, ax ; Clear ax
mov dx, ax ; Clear dx
- cmp cx, EXT2_DIRECT_POINTER_COUNT ; Indirect pointer needed?
- jge .indirect ; Singly indirect pointer
+ ; TODO: Add singly pointer support (until ~12KiB)
+ ;cmp cx, EXT2_DIRECT_POINTER_COUNT ; Indirect pointer needed?
+ ;jge .indirect ; Singly indirect pointer
mov ax, [di] ; Set ax = block pointer
shl ax, 1 ; Multiply ax by 2
@@ -328,22 +329,23 @@ kernel_load:
xor ebx, ebx
+ ; Read singly indirect pointer
mov bx, EXT2_GET_ADDRESS(EXT2_KERNEL_INODE) ; First block
lea di, [bx + EXT2_IND_POINTER_OFFSET] ; Address of singly indirect pointer
mov bx, 0x3000 ; Arbitrary address
-
mov ax, [di] ; Set ax = block pointer
shl ax, 1 ; Multiply ax by 2
mov [lba], ax
mov [dest], bx
call disk_read
+ ; Read data
sub cx, EXT2_DIRECT_POINTER_COUNT
lea di, [ebx + 4 * ecx]
mov bx, 0x4000 ; Arbitrary address
-
mov ax, [di]
shl ax, 1
+ ;sub bx, 0x400
mov [lba], ax
mov [dest], bx
call disk_read