yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
Getting Started with YAZE

YAZE is a ROM editor for "The Legend of Zelda: A Link to the Past" (US and JP versions). It provides a full-featured GUI editor, integrated SNES emulator, AI-powered command-line tools, and a web preview build.


Quick Start

  1. Download the latest release for your platform from the GitHub Releases page
  2. Launch the application and load your ROM via File > Open ROM / Project
  3. Start with a supported editor: Dungeon, Overworld, or Message. Palette uses an extra save step.
  4. Make one small edit, use File > Save ROM, close, and reopen the copied ROM before doing more work.

Using .yazeproj bundles? See the .yazeproj Bundle Guide for how to open bundles on each platform.

Building from source? See the Build and Test Quick Reference.

Helping beta-test? See the Beta Testing Guide for what to try first, ROM compatibility expectations, and useful bug report details.

Web App (Preview)

Want a quick browser-based preview? Use the web build with a limited feature set and no emulator support. See the Web App Guide for supported features and AI configuration.


Tips

  • Backups: Automatic backups are enabled by default. Each save creates a timestamped backup. Use File > ROM Backups... > Restore to stage a backup in the current session, inspect it, then use Save ROM to commit it. Keep Backup Before Save enabled so that commit also preserves the ROM version it replaces. Autosave remains paused until you either commit with Save ROM or choose Discard Restored Backup in the ROM Backups popup to abandon the staged ROM-buffer edits and reload the unchanged backing ROM. Resolve pending dungeon-room or palette edits before discarding.
  • Overworld vs. World Map: the Overworld Editor edits playable areas; Screen Editor > Overworld Map edits the pause-menu map art.
  • Experiment Flags: Try new features via File > Options > Experiment Flags.
  • Editor limits: Graphics and Screen are useful viewers, but pending edits currently block ROM save. Read the Beta Testing Guide before testing editor persistence.
  • Extensions: Load custom tools from the Extensions menu (plugin system under development).
  • AI Providers: Configure providers in Settings > Agent or set GEMINI_API_KEY, OPENAI_API_KEY, or ANTHROPIC_API_KEY.

Editor Status

Editor Tester status Notes
Dungeon Tester ready Use a copied ROM; save, close, and reopen after a small room edit.
Overworld Tester ready Use a copied ROM; save, close, and reopen after a small map edit.
Message Tester ready Save valid parsed text and verify it after reopening.
Palette Conditional Palette Save to ROM, then File > Save ROM. Both steps are required.
Assembly / Asar Conditional Source save and patch application are separate advanced workflows.
Sprite Conditional Custom .zsm editing; vanilla room sprites are edited in Dungeon.
Settings Conditional Verify non-ROM settings after restarting Yaze.
Graphics View only Pending edits deliberately block ROM save.
Screen View only Pending edits deliberately block coordinated ROM save.
Hex / Memory View only Advanced raw tooling; no complete dirty/undo/save contract.
Music View only Playback and inspection; ROM persistence is incomplete.
Emulator Experimental Runtime emulator; save-state UI incomplete.
Agent Experimental Availability depends on build and provider configuration.

The editor readiness matrix is the canonical detailed status.


Command-Line Interface (z3ed)

The z3ed CLI provides scriptable access to ROM editing capabilities.

AI Chat

z3ed agent simple-chat --rom=zelda3.sfc --ai_provider=auto

Example prompt: "What sprites are in room 1?"

ROM Inspection

# List sprites in a dungeon room (room 1 = Eastern Palace)
z3ed dungeon-list-sprites --room=1 --rom=zelda3.sfc
# Describe overworld map
z3ed overworld-describe-map --map=80 --rom=zelda3.sfc
# Search messages
z3ed message-search --query="Master Sword" --rom=zelda3.sfc

For more details, see the z3ed CLI Guide.


Next Steps