??? 04/13/08 13:44 Read: times Msg Score: +1 +1 Good Answer/Helpful |
#153191 - Not possible, use LCALL Responding to: ???'s previous message |
Hello
The ACALL if executed from address 2000H as in your example, can only reach addresses in the 2K area from 2000H to 27FFH. So, if the target address is 8AH, which actually is 008AH, the ACALL is not possible. For this, the LCALL exists, which can be used to access the whole 64K range. You should use a data sheet of an 8051, even an old Intel manual explains good, how it works. Best regards Juergen |