[Fixed 2.0.1] Error assembling ROM player

What is Arkos Tracker? Forums Arkos Tracker forum Bug reports [Fixed 2.0.1] Error assembling ROM player

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #30340
    thegeps
    Participant

    when trying to assemble the player with a song that contains events and ROM player selected I get these errors:

    Pre-processing [EAASM.asm]
    Assembling
    [.\PlayerAkg.asm:681] expression [(PLY_AKG_EVENT)] keyword [PLY_AKG_EVENT] not found in variables, labels or aliases
    [.\PlayerAkg.asm:853] expression [(PLY_AKG_EVENT)] keyword [PLY_AKG_EVENT] not found in variables, labels or aliases
    2 errors

    I saw that the label PLY_AKG_EVENT is present in the player source, but it is in way:

    PLY_AKG_EVENT:
    db 0

    Probably you have to put PLY_AKG_EVENT in the RAM buffer for ROM player…
    Let me know

    #30343
    Targhan
    Keymaster

    Oh you’re right, there IS a mistake, but it is not the one you mention actually.

    The ROM byte is wrongly declared. Check out line 3504:
    `;Generic data.
    IFDEF PLY_CFG_UseRetrig ;********* WRONG!!
    PLY_AKG_Event: equ PLY_AKG_ROM_Buffer + PLY_AKG_BufferOffset : PLY_AKG_BufferOffset = PLY_AKG_BufferOffset + 1
    ENDIF

    This should be:
    ;Generic data.
    IFDEF PLY_CFG_UseEventTracks

    Tell me if that works for you. I won’t make a release just for that, but at least this should fix your problem.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.