ROP CHAIN style )Код:user_app
push continue_app
ld b,4 ;number of drivers
ld hl,table_end
loop
dec hl
ld d,(hl)
dec hl
ld e,(hl)
push de
djnz loop
ret
table
dw driver1
dw driver2
dw driver3
dw driver4
table_end
continue_app
...
Вид для печати
ROP CHAIN style )Код:user_app
push continue_app
ld b,4 ;number of drivers
ld hl,table_end
loop
dec hl
ld d,(hl)
dec hl
ld e,(hl)
push de
djnz loop
ret
table
dw driver1
dw driver2
dw driver3
dw driver4
table_end
continue_app
...