The following code compiling when it should not. We should get an error 'Error: GCASM: Symbol PIPPO has not been defined' but we do not get an error when compiled with an AVR chip. Compiles correctly with mPic.
~~~~~
;Chip Settings
#chip 16F1937, 32
#config osc = int
Dir PORTA.7 In 'input
Dir PORTB.2 Out 'Output
' Loop principale
do
wait 20 ms
SerGest
Loop
end
Sub SerGest
goto Pippo
End sub
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The following code compiling when it should not. We should get an error 'Error: GCASM: Symbol PIPPO has not been defined' but we do not get an error when compiled with an AVR chip. Compiles correctly with mPic.
~~~~~
;Chip Settings
#chip 16F1937, 32
#config osc = int
Dir PORTA.7 In 'input
Dir PORTB.2 Out 'Output
' Loop principale
do
wait 20 ms
Loop
end
Sub SerGest
End sub
Added to the bug tracker.
Resolved in v0.95.006