Re: [cc65] ca65 syntax problems

Date view Thread view Subject view

From: Piotr Fusik (P.Fusik_at_elka.pw.edu.pl)
Date: 2001-11-02 17:00:49


>         .repeat .strlen(Arg), I
>         AtasciiToANTIC .strat(Arg, I)
>         .endrep

"AtasciiToANTIC .strat(Arg, I)" is a call of "AtasciiToANTIC" macro with two
arguments: ".strat(Arg" and "I)". You should call it with the result of
.strat(Arg, I):

    .repeat .strlen(Arg), I
        .proc
            Ch = .strat(Arg, I)
            AtasciiToANTIC Ch
        .endproc
    .endrep

Bye,
Piotr


----------------------------------------------------------------------
To unsubscribe from the list send mail to majordomo_at_musoftware.de with
the string "unsubscribe cc65" in the body(!) of the mail.


Date view Thread view Subject view

This archive was generated by hypermail 2.1.3 : 2001-12-14 22:05:43 CET