vmw_font: add cga thin font, not really that different

This commit is contained in:
Vince Weaver 2023-08-25 22:25:56 -04:00
parent 0d468ef8e3
commit f628ad3d48
4 changed files with 11 additions and 4 deletions

View File

@ -27,7 +27,7 @@ BIOS_TEST: bios_test.o
ld65 -o BIOS_TEST bios_test.o -C $(LINKER_SCRIPTS)/apple2_6000.inc
bios_test.o: bios_test.s \
font_vmw_condensed.s font_vmw_condensed_data.s \
font_vmw_1x8.s fonts/a2_cga_thin.inc \
zx02_optim.s graphics/a2_energy.hgr.zx02
ca65 -o bios_test.o bios_test.s -l bios_test.lst

View File

@ -79,8 +79,8 @@ test4:
test5:
.byte 0,180,"@/\/\/\/\______ |",0
.include "font_vmw_condensed.s"
.include "font_vmw_condensed_data.s"
.include "font_vmw_1x8.s"
.include "fonts/a2_cga_thin.inc"
.include "zx02_optim.s"

View File

@ -1,7 +1,14 @@
PNG2FONT = ../../../../utils/hgr-utils/png2font
all: a2_lowercase_font.inc
all: a2_lowercase_font.inc a2_cga_thin.inc
a2_lowercase_font.inc: a2_lowercase.png
$(PNG2FONT) -i a2_lowercase.png > a2_lowercase_font.inc
a2_cga_thin.inc: a2_cga_thin.png
$(PNG2FONT) -i a2_cga_thin.png > a2_cga_thin.inc
clean:
rm -f *~ *.inc

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB