64kramsystem / 64kramsystem/ghidra-vice-connector
Create interrupt vectors at $FFFA-$FFFF
- Langage dominant
- Python
- Étoiles
- 1
- Forks
- 0
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Add a convenience action that reads the six interrupt vector bytes at \$FFFA–\$FFFF and creates labelled entry points / functions in the current program:
| Address | Vector | Label |
|---------|--------|-------|
| \$FFFA–\$FFFB | NMI | `NMI_VECTOR` |
| \$FFFC–\$FFFD | RESET | `RESET_VECTOR` |
| \$FFFE–\$FFFF | IRQ/BRK | `IRQ_VECTOR` |
Steps:
1. Read the 6 bytes from the live VICE memory (or the loaded program image).
2. Dereference each 16-bit pointer.
3. Create a label and disassemble at the target address.
This gives immediate entry points for game disassembly — NMI and IRQ handlers contain most of the timing-critical game logic.
Can be a Ghidra script alongside `RebaseToC64Load.java`, or a remote method callable from the debugger.
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.