Shop OBEX P1 Docs P2 Docs Learn Events
Pitfalls and crawling out... GetSec() behaves not as I expected, to slow and counting down - Page 2 — Parallax Forums

Pitfalls and crawling out... GetSec() behaves not as I expected, to slow and counting down

2»

Comments

  • evanhevanh Posts: 16,355
    edited 2025-04-01 11:11

    Forget the first MOV, and ALTS's D operand is meant to be the index.

           'Update pattern here
            alts     PatIdx_, #PWMPatt00   ' PatternIdx added
            mov      PattCurr,  0-0
    
  • AribaAriba Posts: 2,693

    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:

            alts     PatIdx_, #PWMPatt0   ' PatternIdx added to pattern table addr
            mov      PattCurr,  0-0
    

    Andy

  • ErNaErNa Posts: 1,805

    OK, I was close, just not close enough! Now it works as expected. Nothing like the Prop around !

  • JonnyMacJonnyMac Posts: 9,254
    edited 2025-04-01 15:59

    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)

  • evanhevanh Posts: 16,355

    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.

Sign In or Register to comment.