This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Step Into doesn't work in our own AGDI DLL.

Step Into doesn't work in our own AGDI DLL for our own MCU with 22-bit contiguous mode compatible to DS80C390.

StepInto works as Step Over does and AG_GoStep(...) get the same nCode in AGDI DLL when we push F11 or F10 in disassembly window disable.

the following is a demo.when lcall executes,F11 is no use.but start label located at 100h ,for example,F11 works. why?
;----------------------------------------;
;$MOD_CONT
?PR?MAIN SEGMENT ECODE
RSEG ?PR?MAIN ORG 0000h LJMP MAIN ORG 600H
start: NOP
LedTwinkle: ret NOP
; ORG 0ffH
MAIN: lcall LedTwinkle jmp main
END

0