Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/15/05 16:44
Read: times


 
Msg Score: +1
 +1 Good Answer/Helpful
#89732 - invert the test
Responding to: ???'s previous message
Hi,
the solution is inverting the test for the conditional jump. For example you have :

JB P1.0,LABEL
...
...
LABEL:

If LABEL is too distant from the JB istruction you get the error, the solution is :

JNB P1.0,SKIP
JMP LABEL
SKIP:
...
...
LABEL:

The JMP istruction can reach every address.

Best Regards.

Massimo.


List of 8 messages in thread
TopicAuthorDate
CJNE : Address out of range >_<;            01/01/70 00:00      
   Need a jump table            01/01/70 00:00      
   invert the test            01/01/70 00:00      
      CJNE -> invert?            01/01/70 00:00      
         just what I posted.            01/01/70 00:00      
   divide and conquer            01/01/70 00:00      
      I call them crutches            01/01/70 00:00      
   try this thread            01/01/70 00:00      

Back to Subject List