How to store the address of an instruction in 8085 Assembly Language? -


i want copy address of instruction labeled memory location : loopcode, can use call loopcode somewhere else.

how in 8085 assembly language?

i thinking of -

lxi h, instr1 xchg lxi h,loopcode someinstr m, d ; someinstr should copy contents of de m.  instr1: mov a,b 


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -