Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error: Undefined GLOBAL label
#1
Looking over an old file of mine that once worked I'm now getting Error: Undefined GLOBAL label . each one is going to a fastcall.

ie

        ld hl, lineMSG
        ld bc, end1-lineMSG
        call myPrint42

calling 

SUB fastcall myPrint42()
ASM
myPrint42:
    push    af
    push    ix
    push    hl
    ld    ix, PRINT42
    CALL    IXCALL
    pop    hl
    pop    ix
    pop    af
    ret
END ASM
END SUB

gives me Error: Undefined GLOBAL label ".myPrint42"

any help please....
I'm always on the chat or facebook.
Reply


Messages In This Thread
Error: Undefined GLOBAL label - by ardentcrest - 2025-11-02, 01:43 PM
RE: Error: Undefined GLOBAL label - by tubz74 - 2025-11-02, 06:50 PM
RE: Error: Undefined GLOBAL label - by boriel - 2025-11-04, 04:50 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)