[A86] Re: Basic Problem with prog (I think...).


[Prev][Next][Index][Thread]

[A86] Re: Basic Problem with prog (I think...).




First of all, using #define does NOT cut down on size or cycles. #define creates an alias to the code you specify. The only thing you save is time spent typing your code.

Second, if I remember correctly, the first declared byte should be a 1 (not a zero) if you want YAS to show an icon:
   jp start
   .dw 1
   .dw title
   .dw icon

Third, as already said, you need to move the final "ret" back with the rest of the code, before the string.

-- Jonathan Marcus
Appelkore@aol.com





Follow-Ups: