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

Re: A85: Calling extended character base.




In a message dated 98-03-11 18:45:29 EST, you write:

<< You simply have to know the TI's byte value for the omega symbol ($CA).
 
 To print a string with the omega symbol in it, you could store it as
 follows.
 
 String:
   .db "Omega = ", $CA, 0 >>

But could I do:

TheFrog:
.db $CA, 0

OR:

TheFrog:
.db "",$CA

??