comparison code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 180:8aced3c7590c

store gf_hi and gf_lo in logbook
author Heinrichsweikamp
date Sun, 06 Feb 2011 10:16:03 +0100
parents 77ab44108c07
children 0651d5dc3f42
comparison
equal deleted inserted replaced
179:77ab44108c07 180:8aced3c7590c
474 WIN_FONT FT_MEDIUM 474 WIN_FONT FT_MEDIUM
475 WIN_INVERT .0 ; Init new Wordprocessor 475 WIN_INVERT .0 ; Init new Wordprocessor
476 476
477 call PLED_standard_color 477 call PLED_standard_color
478 lfsr FSR2,letter 478 lfsr FSR2,letter
479 movff int_O_ascenttime+0,lo ; complete ascend time 479 movff int_O_ascenttime+0,lo ; TTS
480 movff int_O_ascenttime+1,hi ; on 16bits 480 movff int_O_ascenttime+1,hi ; on 16bits
481 bcf leftbind 481 bcf leftbind
482 output_16 482 output_16
483 STRCAT_PRINT "'" 483 STRCAT_PRINT "'"
484 484
684 WIN_TOP .25 684 WIN_TOP .25
685 WIN_LEFT .90 685 WIN_LEFT .90
686 WIN_FONT FT_SMALL 686 WIN_FONT FT_SMALL
687 WIN_INVERT .0 ; Init new Wordprocessor 687 WIN_INVERT .0 ; Init new Wordprocessor
688 call PLED_standard_color 688 call PLED_standard_color
689 GETCUSTOM8 d'32' 689 GETCUSTOM8 d'32' ; GF_lo
690 movwf lo 690 movwf lo
691 691
692 STRCPY "GF_lo:" 692 STRCPY "GF_lo:"
693 bsf leftbind 693 bsf leftbind
694 output_8 694 output_8
695 STRCAT_PRINT "%" 695 STRCAT_PRINT "%"
696 696
697 WIN_TOP .50 697 WIN_TOP .50
698 GETCUSTOM8 d'33' 698 GETCUSTOM8 d'33' ; GF_hi
699 movwf lo 699 movwf lo
700 STRCPY "GF_hi:" 700 STRCPY "GF_hi:"
701 bsf leftbind 701 bsf leftbind
702 output_8 702 output_8
703 STRCAT_PRINT "%" 703 STRCAT_PRINT "%"