Agent skill
geargrafx-debugging
Debug and trace TurboGrafx-16 / PC Engine / SuperGrafx games using the Geargrafx emulator MCP server. Provides workflows for HuC6280 CPU debugging, breakpoint management, hardware inspection, disassembly analysis, and execution tracing. Use when the user wants to debug a PC Engine game, trace code execution, inspect CPU registers or hardware state, set breakpoints, analyze interrupts, step through HuC6280 instructions, reverse engineer game code, examine VDC/VCE/PSG registers, view the call stack, or diagnose rendering, audio, or timing issues. Also use when the user mentions PC Engine development, TurboGrafx-16 homebrew testing, SuperGrafx debugging, CD-ROM game debugging, or HuC6280 debugging with Geargrafx.
Install this agent skill to your Project
npx add-skill https://github.com/drhelius/Geargrafx/tree/main/skills/geargrafx-debugging
Metadata
Additional technical details for this skill
- author
- drhelius
- version
- 1.0
SKILL.md
TurboGrafx-16 / PC Engine Game Debugging with Geargrafx
Overview
Debug TurboGrafx-16, PC Engine, and SuperGrafx games using the Geargrafx emulator as an MCP server. Control execution (pause, step, breakpoints), inspect the HuC6280 CPU and hardware (HuC6270 VDC, HuC6260 VCE, HuC6202 VPC, PSG), read/write memory, disassemble code, trace instructions, and capture screenshots — all through MCP tool calls. Hardware documentation is available in the references/ directory.
MCP Server Prerequisite
IMPORTANT — Check before installing: Before attempting any installation or configuration, you MUST first verify if the Geargrafx MCP server is already connected in your current session. Call debug_get_status — if it returns a valid response, the server is active and ready.
Only if the tool is not available or the call fails, you need to help install and configure the Geargrafx MCP server:
Installing Geargrafx
Run the bundled install script (macOS/Linux):
bash scripts/install.sh
This installs Geargrafx via Homebrew on macOS or downloads the latest release on Linux. It prints the binary path on completion. You can also set INSTALL_DIR to control where the binary goes (default: ~/.local/bin).
Alternatively, download from GitHub Releases or install with brew install --cask drhelius/geardome/geargrafx on macOS.
Connecting as MCP Server
Configure your AI client to run Geargrafx as an MCP server via STDIO transport. Example for Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"geargrafx": {
"command": "/path/to/geargrafx",
"args": ["--mcp-stdio"]
}
}
}
Replace /path/to/geargrafx with the actual binary path from the install script. Add --headless before --mcp-stdio on headless machines.
Hardware Documentation (References)
PC Engine hardware documentation is available in the references/ directory. Load them into your context when investigating specific hardware.
| Reference | File | Load when... |
|---|---|---|
| HuC6280 CPU | references/huc6280_cpu.md | CPU registers, MPR mapping, timer, interrupts, I/O, speed modes |
| Instruction Set | references/huc6280_instructions.md | Opcode reference, addressing modes, cycle counts |
| PSG | references/huc6280_psg.md | 6-channel sound: waveform, noise, LFO, volume, DDA |
| HuC6270 VDC | references/huc6270_vdc.md | Video Display Controller: BAT, sprites, scroll, DMA, interrupts |
| HuC6260 VCE | references/huc6260_vce.md | Video Color Encoder: palette, dot clock, color format |
| HuC6202 VPC | references/huc6202_vpc.md | Video Priority Controller (SuperGrafx): window, priority |
| Memory Map | references/memory_map.md | Full memory map: MPR pages, I/O, WRAM, VRAM, ROM banking |
Debugging Workflow
1. Load and Orient
load_media → get_media_info → get_huc6280_status → get_screenshot
Start every session by loading the ROM, confirming it loaded correctly, then checking CPU state and taking a screenshot to understand the current game state. If a .sym, .lbl, or .noi file exists alongside the ROM, symbols are loaded automatically.
Load additional symbols with load_symbols or add individual labels with add_symbol.
2. Pause and Inspect
Always call debug_pause before inspecting state. While paused:
- CPU state:
get_huc6280_status— registers A, X, Y, S, P (flags), PC, MPR mapping, timer, interrupts, I/O port, speed mode - Disassembly:
get_disassemblywith a start/end address range — only shows executed code paths - Call stack:
get_call_stack— current subroutine hierarchy - Memory:
read_memorywith a memory area tab ID (uselist_memory_areasto discover available areas and their IDs)
3. Set Breakpoints
Use breakpoints to stop execution at points of interest:
| Breakpoint Type | Tool | Use Case |
|---|---|---|
| Execution | set_breakpoint (type: exec) |
Stop when PC reaches address |
| Read | set_breakpoint (type: read) |
Stop when memory address is read |
| Write | set_breakpoint (type: write) |
Stop when memory address is written |
| Range | set_breakpoint_range |
Cover an address range (exec/read/write) |
Breakpoints support 5 memory areas: rom_ram (default), vram, palette, huc6270_reg, huc6260_reg.
Important: Read/write breakpoints stop with PC at the instruction after the memory access.
Manage breakpoints with list_breakpoints, remove_breakpoint.
4. Step Through Code
After hitting a breakpoint or pausing:
| Action | Tool | Behavior |
|---|---|---|
| Step Into | debug_step_into |
Execute one instruction, enter subroutines |
| Step Over | debug_step_over |
Execute one instruction, skip JSR calls |
| Step Out | debug_step_out |
Run until RTS/RTI returns from current subroutine |
| Step Frame | debug_step_frame |
Execute until next VBlank |
| Run To | debug_run_to_cursor |
Continue until PC reaches target address |
| Continue | debug_continue |
Resume normal execution |
After each step, call get_huc6280_status and get_disassembly to see where you are.
5. Trace Execution
The trace logger records CPU instructions interleaved with hardware events (VDC, VCE, PSG, timer, CD-ROM, SCSI, ADPCM, input).
set_trace_logwithenabled: trueto start recording (optionally filter event types)- Let the game run or step through code
set_trace_logwithenabled: falseto stop (entries are preserved)get_trace_logto read recorded entries
Available trace event filters: cpu_irq, vdc, vce, psg, timer, input, cdrom, adpcm, scsi. CPU tracing is always on.
Tracing is essential for understanding timing-sensitive code, interrupt handlers, and hardware interaction sequences.
Hardware Inspection
HuC6270 VDC (Video Display Controller)
get_huc6270_status— VDC state: position, control, interrupt flagsget_huc6270_registers— all 20 VDC registers (0x00-0x13), Address Register (AR), Status Register (SR)write_huc6270_register— write to a VDC register (0-19) or AR (20). Use vdc parameter (1 or 2) for SuperGrafxlist_sprites— all 64 sprites with position, size, pattern, paletteget_sprite_image— get a sprite as a PNG image
HuC6260 VCE (Video Color Encoder)
get_huc6260_status— VCE state: position, sync signals, dot clock, control
HuC6202 VPC (SuperGrafx only)
get_huc6202_status— VPC state: window settings, priority configuration
PSG (Programmable Sound Generator)
get_psg_status— all 6 PSG channels: waveform, frequency, volume, noise, LFO, DDA
CD-ROM Subsystems (CD games only)
get_cdrom_status— CD-ROM drive statusget_cdrom_audio_status— CD audio playback statusget_adpcm_status— ADPCM audio statusget_arcade_card_status— Arcade Card status
CPU
get_huc6280_status— full CPU state: registers, MPR, timer, interrupts, I/O, speedwrite_huc6280_register— modify a register live
Screenshots
get_screenshot— current rendered frame as PNG
Use screenshots after stepping or continuing to see the visual impact of changes.
Common Debugging Scenarios
Finding an Interrupt Handler
- Set an execution breakpoint at the IRQ vector address (read the Memory Map resource for the vector table)
debug_continueto run until the IRQ firesget_huc6280_status+get_disassemblyto see the handler codeget_call_stackto see how deep you areadd_symbolto label the handler address and any subroutines it calls
Diagnosing Graphics Corruption
debug_pause→get_huc6270_registers— check BAT, sprite attributes, scroll, DMA settingsget_huc6260_status— verify dot clock, color modeget_screenshot— capture the current visual stateread_memoryon VRAM and SAT areas to inspect tile/sprite data- Set read/write breakpoints (memory_area:
vramorhuc6270_reg) on display buffer addresses to catch corruption source
Analyzing a Subroutine
set_breakpointat the subroutine entry pointdebug_continue→ when hit,get_huc6280_status- Step through with
debug_step_into/debug_step_over - After each step: check registers, read relevant memory
add_symbolfor the routine and any called subroutinesadd_disassembler_bookmarkto mark interesting locations
Tracking a Variable
add_memory_watchon the variable's address — watches are visible in the emulator GUI- Set a write breakpoint with
set_breakpoint(type: write) on that address - When hit,
get_disassemblyreveals what code is modifying it get_call_stackshows the call chain leading to the write
Timing Analysis
set_trace_logwithenabled: trueto start recording timer and VDC events- Let the game run through the section of interest
get_trace_logto see the interleaved CPU + hardware events- Check VDC interrupt timing via
get_huc6270_status - Correlate timer fires with code execution in the trace
CD-ROM Game Debugging
load_mediawith a.cuefile to load a CD-ROM imageget_cdrom_statusto verify drive stateset_trace_logwithcdrom: trueandscsi: trueto trace CD access patternsget_adpcm_statusto inspect ADPCM audio state- Set breakpoints on CD-ROM RAM areas to catch data loading
Memory Areas
Use list_memory_areas to get the full list with IDs and sizes. Common areas:
| Area | Description | Typical Size |
|---|---|---|
| WRAM | Working RAM | 8KB (32KB for SuperGrafx) |
| ZP | Zero Page (fast variables) | 256 bytes |
| ROM | Game ROM | Varies |
| CARD RAM | HuCard RAM | Varies |
| BRAM | Backup RAM (save data) | 2KB |
| PALETTES | VCE color table | 512 bytes |
| VRAM / VRAM 1 | VDC video RAM | 64KB |
| VRAM 2 | VDC 2 video RAM (SuperGrafx) | 64KB |
| SAT / SAT 1 | Sprite Attribute Table | 512 bytes |
| SAT 2 | SAT for VDC 2 (SuperGrafx) | 512 bytes |
| CDROM RAM | CD-ROM working RAM | Varies |
| ADPCM | ADPCM sample RAM | 64KB |
| ARCADE | Arcade Card RAM | Varies |
| MB128 | Memory Base 128 | 128KB |
Organizing Your Debug Session
- Symbols: Use
add_symbolliberally to label addresses you've identified — makes disassembly readable - Bookmarks: Use
add_disassembler_bookmarkfor code locations andadd_memory_bookmarkfor data regions - Watches: Use
add_memory_watchfor variables you're tracking across steps - Save states: Use
save_state/load_stateto snapshot and restore emulator state at interesting points - Screenshots: Capture visual state with
get_screenshotafter significant changes
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
geargrafx-romhacking
Hack, modify, and translate TurboGrafx-16 / PC Engine / SuperGrafx ROMs using the Geargrafx emulator MCP server. Provides workflows for memory searching, value discovery, cheat creation, data modification, sprite/text finding, and translation patching. Use when the user wants to create cheats, find game values in memory, modify ROM data, translate a PC Engine game, patch game behavior, create ROM hacks, discover hidden content, change sprites or graphics, find text strings, do infinite lives or health hacks, search for score or item counters, or reverse engineer data structures in TurboGrafx-16 or PC Engine games. Also use for any ROM hacking, memory poking, or game modification task involving Geargrafx.
obsidian-clipper-template-creator
Guide for creating templates for the Obsidian Web Clipper. Use when you want to create a new clipping template, understand available variables, or format clipped content.
claude-code-expert
Especialista profundo em Claude Code - CLI da Anthropic. Maximiza produtividade com atalhos, hooks, MCPs, configuracoes avancadas, workflows, CLAUDE.md, memoria, sub-agentes, permissoes e integracao com ecossistemas.
lex
Centralized 'Truth Engine' for cross-jurisdictional legal context (US, EU, CA) and contract scaffolding.
odoo-inventory-optimizer
Expert guide for Odoo Inventory: stock valuation (FIFO/AVCO), reordering rules, putaway strategies, routes, and multi-warehouse configuration.
android_ui_verification
Automated end-to-end UI testing and verification on an Android Emulator using ADB.
Didn't find tool you were looking for?