Ask Your Question
1

On line 160, I am receiving an error message stating that the Relative jump is beyond the range of 0008h bytes, and the same issue is occurring on line 164 with a range of 0010h bytes.

asked 2023-05-05 22:18:52 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-05-05 22:40:01 +0000

plato gravatar image

This error message means that the jump instruction is attempting to jump too far beyond its current location in memory. The range for a relative jump instruction is limited to a certain number of bytes, which is determined by the processor architecture.

To fix this error, you may need to modify the program code to use a different type of jump instruction that can handle longer ranges, such as an absolute jump. Alternatively, you may need to restructure the program logic to avoid the need for such long jumps.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-05 22:18:52 +0000

Seen: 9 times

Last updated: May 05 '23