Compare commits
No commits in common. "1685f2d0b9e3e90fd4efe0bea365ef0dfe2ba42e" and "60baa3ec46605af169c19c942a38a43171cdf413" have entirely different histories.
1685f2d0b9
...
60baa3ec46
4
Makefile
4
Makefile
@ -12,8 +12,8 @@ LD := $(CC)
|
||||
LDFLAGS := -T boot/linker.ld -ffreestanding -O2 -nostdlib
|
||||
LIBS := ./libbozo/build/libbozo.a -lgcc
|
||||
|
||||
SSRC := $(shell find $(SOURCEDIR) -name '*.s')
|
||||
CSRC := $(shell find $(SOURCEDIR) -name '*.c')
|
||||
SSRC := $(wildcard $(SOURCEDIR)/*.s)
|
||||
CSRC := $(wildcard $(SOURCEDIR)/*.c)
|
||||
OBJ := $(patsubst $(SOURCEDIR)/%.c,$(OBJECTDIR)/%.o,$(CSRC))\
|
||||
$(patsubst $(SOURCEDIR)/%.s,$(OBJECTDIR)/%.o,$(SSRC))
|
||||
|
||||
|
2
libbozo
2
libbozo
@ -1 +1 @@
|
||||
Subproject commit 69caa70c38aac2894265887d61223e35aeed5f27
|
||||
Subproject commit 4fd5ae3a6528cbeff4730af4128b4872ef6f66ea
|
@ -23,6 +23,4 @@ void kernel_main(void)
|
||||
|
||||
/* Newline support is left as an exercise. */
|
||||
kprintf(0, "test %d a %d b %d\n", 10, 2, 3);
|
||||
while (true)
|
||||
terminal_getkey();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user