diff --git a/src/Makefile b/src/Makefile index f5f9c83..08b31d7 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,34 +1,23 @@ EXEC := bringelle CC := gcc -c -m32 -fno-pie -fno-builtin -fno-stack-protector -UTILS_SRC := $(wildcard utils/*.c) +UTILS_OBJ := $(addsuffix .o,$(basename $(wildcard utils/*.c))) all: $(EXEC) -$(EXEC): boot.o utils.o bringelle.o - for obj in $^ ;\ - do \ - objcopy --remove-section .note.gnu.property $${obj} ; \ - done +$(EXEC): boot/boot.o $(UTILS_OBJ) bringelle.o ld -Ttext=0x00100000 -melf_i386 -nostdlib --oformat=binary -o bringelle $^ -bringelle.o: bringelle.c - $(CC) $^ - -utils.o: $(UTILS_SRC) - for src in $^ ;\ - do \ - obj=$$(basename $${src} ".c")".o" ;\ - $(CC) $${src} -o utils/$${obj} ;\ - done - ld -melf_i386 -relocatable utils/*.o -o utils.o - -boot.o: ./boot/boot.S +boot/boot.o: ./boot/boot.S as --32 -o $@ $^ -mx86-used-note=no +%.o: %.c + $(CC) -o $@ $< + objcopy --remove-section .note.gnu.property $@ + clean: - find ./ -name "*.o" -delete - rm $(EXEC) + - find ./ -name "*.o" -delete .PHONY: clean diff --git a/src/bringelle.c b/src/bringelle.c index d8bbe82..c13744a 100644 --- a/src/bringelle.c +++ b/src/bringelle.c @@ -1,8 +1,10 @@ #include "utils/print.h" +#include "utils/asm.h" void bringelle(){ clear(); print("Booting Bringelle..."); + while(1); } diff --git a/src/utils/asm.h b/src/utils/asm.h new file mode 100644 index 0000000..0929afa --- /dev/null +++ b/src/utils/asm.h @@ -0,0 +1,11 @@ +#ifndef ASM_H +#define ASM_H + +#define outb(port,value) \ + asm volatile ("outb %%al, %%dx" :: "a"(value), "d" (port) ) + +#define outbj(port,value) \ + asm volatile ("outb %%al, %%dx;" :: "a" (value), "d"(port) ) + + +#endif \ No newline at end of file