diff --git a/fancy_lores/Makefile b/fancy_lores/Makefile index ad13fc8e..0815edfb 100644 --- a/fancy_lores/Makefile +++ b/fancy_lores/Makefile @@ -25,7 +25,7 @@ DISP4048D: disp4048d.o ld65 -o DISP4048D disp4048d.o -C ../linker_scripts/apple2_1000.inc disp4048d.o: disp4048d.s gr_copy.s \ - apple_40_48d.inc katahdin_40_48d.inc + apple_40_48d.inc katahdin_40_48d.inc spacebars_40_48d.inc ca65 -o disp4048d.o disp4048d.s -l disp4048d.lst @@ -55,6 +55,9 @@ apple_40_96.inc: png_to_40x96 apple_40_96.png ### +spacebars_40_48d.inc: png_to_40x48d spacebars_40_48d.png + ./png_to_40x48d asm spacebars_40_48d.png spacebars > spacebars_40_48d.inc + katahdin_40_48d.inc: png_to_40x48d katahdin_40_48d.png ./png_to_40x48d asm katahdin_40_48d.png katahdin > katahdin_40_48d.inc diff --git a/fancy_lores/disp4048d.s b/fancy_lores/disp4048d.s index dbe9792b..e15e41b5 100644 --- a/fancy_lores/disp4048d.s +++ b/fancy_lores/disp4048d.s @@ -40,7 +40,7 @@ TEXT = $FB36 ;; Set text mode HOME = $FC58 ;; Clear the text screen WAIT = $FCA8 ;; delay 1/2(26+27A+5A^2) us -MAX = 2 +MAX = 3 lda #$ff sta WHICH @@ -346,7 +346,9 @@ gr_offsets: pictures: .word apple_low,apple_high .word katahdin_low,katahdin_high + .word spacebars_low,spacebars_high .include "apple_40_48d.inc" .include "katahdin_40_48d.inc" +.include "spacebars_40_48d.inc" diff --git a/fancy_lores/spacebars_40_48d.png b/fancy_lores/spacebars_40_48d.png new file mode 100644 index 00000000..a9150f8d Binary files /dev/null and b/fancy_lores/spacebars_40_48d.png differ