Just a reminder that CANONICAL Spin2 (that is, compiled by PNut/Propeller Tool/Spin Tools) can do assembly testing without invoking a separate cog. I've never used ALTS but think it will be useful in an upcoming project so I took Andy's suggestion and wrapped it into an inline test. It works as intended. Thanks, Andy!
pub demo_alts()
org
mov pr0, #0
.loop alts pr0, #Fib0
mov pr1, 0-0
debug("Index: ", udec_(pr0), " Fibo:", udec_(pr1))
waitx ##(CLK_FREQ >> 2)
incmod pr0, #9 wc
if_nc jmp #.loop
ret
Fib0 long 0
Fib1 long 1
Fib2 long 1
Fib3 long 2
Fib4 long 3
Fib5 long 5
Fib6 long 8
Fib7 long 13
Fib8 long 21
Fib9 long 34
end
@JonnyMac said:
Just a reminder that CANONICAL Spin2 (that is, compiled by PNut/Propeller Tool/Spin Tools) can do assembly testing without invoking a separate cog.
Inline ASM works in flexspin, too, no need to stress out. Recently a new mode has been added that's even more compatible with PNut (Put {++opt(!fast-inline-asm)} between PUB/PRI and the method name to enable - other compilers treat this as a regular comment)
Lol, that might be a little overkill. Jon was just saying he hasn't tested using Flexspin so can't speak for it. His example assembly will compile in just fine without special controls.
The main reason Eric added that full assembler compatibility switch was to provide compile-time cogRAM allocation warnings for two of my chunky Pasm2 Fcache'd routines that use big RES directives. The default assembler can't do the calculation to give a warning.
Comments
Forget the first MOV, and ALTS's D operand is meant to be the index.
As long as the pattern table is in the cogram (of the same cog that executes the code), the ALTS approach should work. I would write it like that:
Andy
OK, I was close, just not close enough! Now it works as expected. Nothing like the Prop around !
Just a reminder that CANONICAL Spin2 (that is, compiled by PNut/Propeller Tool/Spin Tools) can do assembly testing without invoking a separate cog. I've never used ALTS but think it will be useful in an upcoming project so I took Andy's suggestion and wrapped it into an inline test. It works as intended. Thanks, Andy!
Inline ASM works in flexspin, too, no need to stress out. Recently a new mode has been added that's even more compatible with PNut (Put
{++opt(!fast-inline-asm)}
between PUB/PRI and the method name to enable - other compilers treat this as a regular comment)Lol, that might be a little overkill. Jon was just saying he hasn't tested using Flexspin so can't speak for it. His example assembly will compile in just fine without special controls.
The main reason Eric added that full assembler compatibility switch was to provide compile-time cogRAM allocation warnings for two of my chunky Pasm2 Fcache'd routines that use big RES directives. The default assembler can't do the calculation to give a warning.