diff --git a/fancy_lores/Makefile b/fancy_lores/Makefile index 52b14651..89bafed3 100644 --- a/fancy_lores/Makefile +++ b/fancy_lores/Makefile @@ -29,7 +29,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 spacebars_40_48d.inc df_girl_40_48d.inc + apple_40_48d.inc katahdin_40_48d.inc spacebars_40_48d.inc df_girl_40_48d.inc k_40_48d.inc ca65 -o disp4048d.o disp4048d.s -l disp4048d.lst @@ -61,6 +61,9 @@ apple_40_48d.inc: apple_40_48d.png df_girl_40_48d.inc: df_girl_40_48d.png $(PNG_TO_40x48D) asm df_girl_40_48d.png df_girl > df_girl_40_48d.inc +k_40_48d.inc: k_40_48d.png + $(PNG_TO_40x48D) asm k_40_48d.png k > k_40_48d.inc + ### diff --git a/fancy_lores/disp4048d.s b/fancy_lores/disp4048d.s index 85ead679..9226d766 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 = 4 +MAX = 5 lda #$ff sta WHICH @@ -348,9 +348,11 @@ pictures: .word katahdin_low,katahdin_high .word spacebars_low,spacebars_high .word df_girl_low,df_girl_high + .word k_low,k_high .include "apple_40_48d.inc" .include "katahdin_40_48d.inc" .include "spacebars_40_48d.inc" .include "df_girl_40_48d.inc" +.include "k_40_48d.inc" diff --git a/fancy_lores/k_40_48d.png b/fancy_lores/k_40_48d.png new file mode 100644 index 00000000..9f1c501b Binary files /dev/null and b/fancy_lores/k_40_48d.png differ