Re: A85: ZShell to Usgard


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

Re: A85: ZShell to Usgard




>How do I do this in 
>Usgard? 
>Would it be like this:
>
>ld   hl, &lookup
>inc   hl
>
>lookup:
>   .db   128
>   .db   64

Yes this is correct but there is a better way:

ld hl, &lookup + 1

This might look like it won't work but it will.  Or you could always have
this:

lookup:
   .db 128

lookup2:
   .db 64

Justin Bosch
justin-b@juno.com

_____________________________________________________________________
You don't need to buy Internet access to use free Internet e-mail.
Get completely free e-mail from Juno at http://www.juno.com
Or call Juno at (800) 654-JUNO [654-5866]


Follow-Ups: References: