introduce printf for screen text memory

This commit is contained in:
Robert 2023-09-05 23:12:24 +02:00
parent e8cef8bd59
commit 3ef9be01ae
4 changed files with 109 additions and 3 deletions

View file

@ -33,7 +33,7 @@ $(BUILD_DIR)/%.asm.o: $(SRC_DIR)/%.asm
$(BUILD_DIR)/%.c.o: $(SRC_DIR)/%.c
@mkdir -p "$(@D)"
$(CC) -c $< -o $@ -I$(INCLUDE_DIR) -std=gnu99 -ffreestanding -O2 -Wall -Wextra
$(CC) -c $< -o $@ -I$(INCLUDE_DIR) -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wformat
clean:
rm -rf $(BUILD_DIR)/*