Re: A83: Florent...


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

Re: A83: Florent...




can you help me to understand this snippet of code:

ld hl,$1D09
ld ($8252), hl
ld hl, OptionsTxt
call _vputs
ld de, $2509
ld ($8252), de
call _vputs
ld de,$1509
ld ($8252), de
call _vputs

OptionsTxt:
.db "Set Password",0
.db "Install",0
.db "Quit",0

Olle Hedman wrote:

> At 12:15 1998-06-14 -0700, you wrote:
> >
> >I don't quite understand how the    ld ($8252),hl    works?
>
> that is putting the contents of HL to memory location $8252 (in reverse
> byte order = least significant byte first.)
>
> //Olle




References: