Re: [cc65] Apple 2 ASCII with MSB on

Date view Thread view Subject view

From: Ullrich von Bassewitz (uz_at_musoftware.de)
Date: 2003-05-10 19:41:44


On Fri, May 09, 2003 at 08:38:22PM -0600, Justin England wrote:
> Is there an equivalent to 'msb on' in ca65?  I have looked though the
> docs, but couldn't find anything that looked like it was what I needed.

This would mean that the translation table used in the assembler is wrong. A
quick fix is to encode the strings as numbers, or to write a macro

        .macro  string  s
                .repeat .strlen(s), i
                        .byte   .strat(s,i) | $80
                 .endrepeat
        .endmacro

Can someone explain me how characters work in the apple? This is the first
time I hear something about the usage of bit 7.

Regards


        Uz



-- 
Ullrich von Bassewitz                                  uz_at_musoftware.de
----------------------------------------------------------------------
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 : 2003-05-10 19:41:55 CEST