b1e162b8a3
Replace the "g" arg (glyph) with "c" (character). The reason why "g" was used was to save a "0x20 -" operation at all CELL! implementations, but this came with too big a drawback: it made CELL! hardly usable outside of the Grid subsystem, mostly because the user of CELL! would often have to do "0x20 -". For example, I want the SMS's Pad driver to use CELL! directly instead of having to do EMIT+XYPOS-messing-around. I would have had to do a "0x20 -" there.
34 lines
604 B
Makefile
34 lines
604 B
Makefile
# See /doc/hw/z80/sms.txt
|
|
TARGET = os.bin
|
|
BASE = ../../..
|
|
STAGE = $(BASE)/cvm/stage
|
|
BLKPACK = $(BASE)/tools/blkpack
|
|
SMSROM = $(BASE)/tools/smsrom
|
|
EMUL = $(BASE)/emul/z80/sms
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): xcomp.fs $(STAGE) blkfs
|
|
cat xcomp.fs | $(STAGE) blkfs > $@
|
|
|
|
$(SMSROM):
|
|
$(BLKPACK):
|
|
$(MAKE) -C ../tools
|
|
|
|
blkfs: $(BLKPACK) $(BASE)/blk.fs blk.fs
|
|
cat $(BASE)/blk.fs blk.fs | $(BLKPACK) > $@
|
|
|
|
$(STAGE):
|
|
$(MAKE) -C $(BASE)/cvm stage
|
|
|
|
os.sms: $(TARGET) $(STAGE) $(SMSROM)
|
|
$(SMSROM) $(TARGET) > $@
|
|
|
|
$(EMUL):
|
|
$(MAKE) -C ${@:%/sms=%}
|
|
|
|
.PHONY: emul
|
|
emul: $(EMUL) $(TARGET)
|
|
$(EMUL) $(TARGET)
|
|
|