JP (HL) / (IX) / (IY) lifted as a memory-indirect jump

Open Beginner friendly
#13 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
2/5
Estimated time
1-3 hours
Newbie friendliness
76/100
Issue type
Bug
Clarity
Clearly specified
Activity status
Quiet
Tech stack
python

Research direction

Start in Z80IL.py at goto_or_jump() and trace how the register-deref target is passed to operand_to_il(). Check the JP (HL), JP (IX), and JP (IY) cases, then verify that the lifted output treats each register as the jump target rather than loading from memory. Confirm the standard Z80 jump-table dispatch behavior.

Written by the indexing model from the issue text.

Description

For a register-deref target, goto_or_jump() in Z80IL.py runs the operand through operand_to_il() without peel_load=True, so it emits a load:

e9   JP (HL)   ->   jump([HL].w)      # should be jump(HL)

JP (HL) jumps to the address in HL, it does not dereference it. This breaks the standard Z80 jump-table dispatch idiom.

Dominant language
Python
Stars
12
Forks
5
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from Vector35/Z80

All issues in Vector35/Z80

Similar issues

More Python issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.