Jump to content
IGNORED

DASM Error


Just Jeff

Recommended Posts

Anybody know what this error means?

C:\Atari\dasm>dasm BP7e.asm -f3 -v0 -sBP7e.sym -lBP7e.lst -oBP7e.bin
segment: CODE fffa                    vs current org: 10000
 ---- 27 bytes before end of RAM
 ---- 206 bytes free before end of cart.

BP7e.asm (2598): error: Origin Reverse-indexed.

Its my NMI vector but it all looks fine to me:

InitSystem:
 
        CLEAN_START         
                
        		
----------------------------------------------------------------------------------------------------------------------------


    ORG $FFFA        ; set address to 6507 Interrupt Vectors 
    .WORD InitSystem ; NMI
    .WORD InitSystem ; RESET
    .WORD InitSystem ; IRQ

I've been changing/adding code and I did notice my last successful compile had a much different bytes free amount though I'm sure I didn't add 250 bytes on the last changes I made.

C:\Atari\dasm>dasm BP7d.asm -f3 -v0 -sBP7d.sym -lBP7d.lst -oBP7d.bin
 ---- 27 bytes before end of RAM
 ---- 462 bytes free before end of cart.

Complete.
Link to comment
Share on other sites

I've been changing/adding code and I did notice my last successful compile had a much different bytes free amount though I'm sure I didn't add 250 bytes on the last changes I made.

Do you have an ALIGN 256 statement in your code? If that is currently at e.g. $f800 and you add just one byte before, your loose another 255 bytes from alignment.
  • Like 1
Link to comment
Share on other sites

After resolving this, I added more code and got a different error. Is this also due to running out of space? I took out the other two align 256 but it didn't help.

C:\Atari\dasm>dasm BP7f.asm -f3 -v0 -sBP7f.sym -lBP7f.lst -oBP7f.bin
--- Unresolved Symbol List
TransformerGfx           0000 ????         (R )
StartScreen              0000 ????         (R )
StaticDisplay            0000 ????         (R )
PFx_Segment_G_Tab        0000 ????         (R )
AddToScore               0000 ????         (R )
TopBand0                 0000 ????         (R )
TopBand1                 0000 ????         (R )
TopBand2                 0000 ????         (R )
PFx_Segment_BF_Tab       0000 ????         (R )
COIN_HEIGHT              0000 ????         (R )
COLOR_HEIGHT             0000 ????         (R )
PLAYER1_HEIGHT           0000 ????         (R )
PLAYER0_HEIGHT           0000 ????         (R )
PFx_Segment_CE_Tab       0000 ????         (R )
PFx_Segment_A_Tab        0000 ????         (R )
CallFromKernal           0000 ????         (R )
TestPattern              0000 ????         (R )
PFx_Segment_D_Tab        0000 ????         (R )
Player0Gfx               0000 ????         (R )
CoinColor                0000 ????         (R )
PlayerColor              0000 ????         (R )
Player1Gfx               0000 ????         (R )
--- 22 Unresolved Symbols

 ---- 27 bytes before end of RAM


Fatal assembly error: Source is not resolvable.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...