Have set the cpu correctly in both as PIC16f629 wondering what might be causing MPLab to report message??
<pre><code>
banksel TRISC
bcf TRISC,0
bcf TRISC,1
bcf TRISC,2
bcf TRISC,3
bsf PIE1,T1IE
bsf PIE2,C1IE
bsf PIE1,ADIE
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 73 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 74 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 75 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 76 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 77 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 78 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 79 : Register in operand not in bank 0. Ensure that bank bits are correct.
</code></pre>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
That message comes up every time a variable outside of bank 0 is accessed, regardless of whether or not the bank bits are correct. It can be safely ignored.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Have set the cpu correctly in both as PIC16f629 wondering what might be causing MPLab to report message??
<pre><code>
banksel TRISC
bcf TRISC,0
bcf TRISC,1
bcf TRISC,2
bcf TRISC,3
bsf PIE1,T1IE
bsf PIE2,C1IE
bsf PIE1,ADIE
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 73 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 74 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 75 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 76 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 77 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 78 : Register in operand not in bank 0. Ensure that bank bits are correct.
Message G:\DEV\PIC\GCBASIC\COMPILED.ASM 79 : Register in operand not in bank 0. Ensure that bank bits are correct.
</code></pre>
That message comes up every time a variable outside of bank 0 is accessed, regardless of whether or not the bank bits are correct. It can be safely ignored.