diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2019-10-06 12:56:26 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2019-10-06 12:56:26 +0100 |
| commit | 64aa82592c6c2b043d8c62100d4ce110bf616c1e (patch) | |
| tree | 73387e2516ac2b7066c43ebf2dbe76e313edbcfc /Makefile | |
| parent | bd77381c27ef5b61bf1c123efef3895b98a7a615 (diff) | |
| download | tinyOS-64aa82592c6c2b043d8c62100d4ce110bf616c1e.tar.xz tinyOS-64aa82592c6c2b043d8c62100d4ce110bf616c1e.zip | |
Add os statusbar. Start stdlib
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,6 +15,7 @@ build: setup kernel/kernel.c kernel/global_descriptor_table.c kernel/gpu/text_mo $(CC) $(CFLAGS) -c kernel/io/keyboard/keyboard_handler.c -o bin/keyboard_handler.o $(CC) $(CFLAGS) -c os/main.c -o bin/main.o $(CC) $(CFLAGS) -c os/shell/shell.c -o bin/shell.o + $(CC) $(CFLAGS) -c os/stdlib/stdlib.c -o bin/stdlib.o ld -m elf_i386 -T link.ld -o bin/kernel.bin bin/*.o clean: @@ -23,7 +24,7 @@ clean: rm -f tinyOS.iso run: - qemu-system-i386 -kernel bin/kernel.bin + cpulimit -l 20 qemu-system-i386 -kernel bin/kernel.bin build-and-run: build run |