comparison code_part1/OSTC_code_asm_part1/menu_custom.asm @ 670:92e1690ecc84

2.57beta release
author heinrichsweikamp
date Tue, 04 Dec 2012 16:41:38 +0100
parents 420e62cd88ad
children 6e456a6398e0
comparison
equal deleted inserted replaced
669:069f708a6a09 670:92e1690ecc84
842 ; 842 ;
843 ; Note: the trick here is to do two sweep over the 64 CF values, to make sure 843 ; Note: the trick here is to do two sweep over the 64 CF values, to make sure
844 ; they are all ok. 844 ; they are all ok.
845 845
846 check_customfunctions: 846 check_customfunctions:
847 movlw max_custom_number+1 ; Defined in definitions.asm 847 ; movlw max_custom_number+1 ; Defined in definitions.asm
848 movlw .63 ; mH: CF checker does currently not work for Bank2
848 cpfseq cf_checker_counter ; All tested? 849 cpfseq cf_checker_counter ; All tested?
849 bra check_customfunctions1 ; No, continue 850 bra check_customfunctions1 ; No, continue
850 clrf cf_checker_counter ; clear counter 851 clrf cf_checker_counter ; clear counter
851 return ; YES: just do nothing. 852 return ; YES: just do nothing.
852 853