can read character from keyboard now

This commit is contained in:
2024-12-04 17:17:53 +09:00
parent f18775bfdd
commit 4580d576a8
25 changed files with 729 additions and 371 deletions

View File

@@ -2,6 +2,7 @@ BDIR = build
SUBDIRS = biosboot boot mbr installboot installmbr
all: $(BDIR) $(SUBDIRS)
cp installboot/filecopy.sh $(BDIR)/
$(BDIR):
mkdir -p $(BDIR)
@@ -10,6 +11,6 @@ clean: $(SUBDIRS)
rm -rf $(BDIR)
$(SUBDIRS):
@make -sC $@ $(MAKECMDGOALS) BDIR=$(PWD)/$(BDIR) IDIR=$(PWD)
@make -C $@ $(MAKECMDGOALS) BDIR=$(PWD)/$(BDIR) SDIR=$(PWD)
.PHONY: biosboot boot installboot mbr installmbr