diff code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 310:b20fc8c4ac92

Fix EAD/END display (not mm, m with a trailling space)
author JeanDo
date Sun, 01 May 2011 19:55:47 +0200
parents 2f21f7a77608
children b7e4e74c0e17
line wrap: on
line diff
--- a/code_part1/OSTC_code_asm_part1/pled_outputs.asm	Sun May 01 17:24:53 2011 +0200
+++ b/code_part1/OSTC_code_asm_part1/pled_outputs.asm	Sun May 01 19:55:47 2011 +0200
@@ -3084,14 +3084,14 @@
 	movff   char_O_EAD,lo
 	bsf     leftbind
 	output_8                            ; Print EAD w/o leading space.
-	STRCAT_PRINT    "m"
+	STRCAT_PRINT    "m "
 
 	WIN_TOP		.216
 	lfsr	FSR2,letter
 	movff   char_O_END,lo
 	output_8                            ; Print END w/o leading space.
 	bcf		leftbind
-	STRCAT_PRINT    "m"
+	STRCAT_PRINT    "m "
 
 	btfsc	is_bailout					; In bailout mode?
 	return                              ; Yes: done.