P2 Propeller Tool & pasm jmp
pic18f2550
Posts: 400
in Propeller 2
Can't the Propeller Tool in PASM make jumps over cells deffined with long?
DAT org ' ' asmclk ' ' .loop ' ' call #.dac1 ' ' call #.adc2 ' ' jmp #.loop ' ' '------------------------------------------------------------------------------------------------------' ' DAC ' '------------------------------------------------------------------------------------------------------' .dac1 ' ' ret ' ' '------------------------------------------------------------------------------------------------------' ' Variabeln ' '------------------------------------------------------------------------------------------------------' outw long 0 ' ' '------------------------------------------------------------------------------------------------------' ' ADC ' '------------------------------------------------------------------------------------------------------' .adc2 ' ' ret ' ' '------------------------------------------------------------------------------------------------------' ' Variabeln ' '------------------------------------------------------------------------------------------------------' inw long $8000 ' '
Comments
you use local labels with "."
but have not local labels in between.
So remove the "." from labels and calls.
Gruss,
Mike
Or put dots at start of all the labels.
I have now killed the points.
I guess I got carried away with the examples.
Thanks