[A83] Storing/Recalling User-Vars


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

[A83] Storing/Recalling User-Vars




Hi!

It might be a really silly question, but:

Is there any disadvantage by using this code

    call _pushrealO1 
    call _zerooop1 
    ld hl,op1+1 
    ld (hl),'W' 
    call _stoother

instead of the following one?

    call _pushrealO1
    call _zerooop1
    ld hl, 'W'
    ld (op1+1),hl
    call _stoother

I ask this because the 1st one saves space
and time (not?), but always the 2nd one
had been used for storing uservars 
in ASMGuru and TI-documentations.

        Valio







Follow-Ups: