mirror of
https://github.com/Michaelangel007/apple2_hgr_font_tutorial.git
synced 2024-11-22 18:31:35 +00:00
15 lines
396 B
Bash
15 lines
396 B
Bash
|
!#/bin/sh
|
||
|
COPY=cp
|
||
|
|
||
|
source src2dsk.sh ../asm/drawfont.s
|
||
|
source src2dsk.sh ../asm/charinspect.s
|
||
|
source src2dsk.sh ../asm/font7x8.s
|
||
|
source src2dsk.sh ../asm/fontbb.s
|
||
|
|
||
|
${COPY} emptydos33.dsk hgrfont.dsk
|
||
|
a2in -r b hgrfont.dsk DRAWFONT drawfont.bin
|
||
|
a2in -r b hgrfont.dsk CHARINSPECT charinspect.bin
|
||
|
a2in -r b hgrfont.dsk FONT7X8 font7x8.bin
|
||
|
a2in -r b hgrfont.dsk FONTBB fontbb.bin
|
||
|
|