fceux/help/toc.html

1573 lines
38 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<title>FCEUX Help- Table of Contents</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="HelpNDoc">
<link type="text/css" rel="stylesheet" media="all" href="css/reset.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/silver-theme/jquery-ui-1.8.12.custom.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/base.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/hnd.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/toc.css" />
<!--[if lte IE 8]>
<link type="text/css" rel="stylesheet" media="all" href="css/ielte8.css" />
<![endif]-->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/jquery.treeview.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.12.custom.min.js"></script>
<script type="text/javascript" src="js/hndjsse.js"></script>
<script type="text/javascript">
var bSearchDataLoaded = false;
$(document).ready(function()
{
var sAnchorName = top.location.href.substring(top.location.href.lastIndexOf("#") + 1, top.location.href.length);
var nSelectedTab = 0;
if (sAnchorName == '_index') nSelectedTab = 1
else if (sAnchorName == '_search') nSelectedTab = 2;
$("#tabs").tabs({selected: nSelectedTab});
$("#toc").treeview({collapsed: true});
$("#keywords").treeview({collapsed: true});
// Load search data
$.getScript("js/searchdata.js", function() {
bSearchDataLoaded = true;
});
});
function SelectTocItem(sLinkHref)
{
$("#toc a").each(function()
{
if ($.inArray(sLinkHref + '.htm', this.href) > -1) $(this).css('font-weight', 'bold')
else $(this).css('font-weight', '');
});
}
function HideKwPopup()
{
if($("#popupMenu")) $("#popupMenu").remove();
}
function ShowKwPopup(oSender, aLinks)
{
HideKwPopup();
if (!aLinks || !aLinks.length || aLinks.length == 0) return false
else if (aLinks.length == 1) return true
else
{
var oParentDiv = document.createElement("DIV");
oParentDiv.id = "popupMenu";
var oLink = null;
for (var nCnt=0; nCnt<aLinks.length; nCnt++)
{
oLink = document.createElement("A");
oLink.innerHTML = aLinks[nCnt][0];
oLink.href = aLinks[nCnt][1];
oLink.target = "FrameMain";
oLink.onclick = HideKwPopup;
oParentDiv.appendChild(oLink);
}
document.body.appendChild(oParentDiv);
var pos = $(oSender).offset();
var height = $(oSender).height();
$(oParentDiv).css({
"left": (pos.left+20) + "px",
"top": (pos.top + height + 5) + "px"
});
$(oParentDiv).show();
return false;
}
}
function PerformSearch()
{
sValue = $("#search_value").val();
$("#search_results").html('Searching...');
var oSearchEngine = new HndJsSe;
oSearchEngine.ParseInput(sValue);
oSearchEngine.PerformSearch();
if (!oSearchEngine.aResults || !oSearchEngine.aResults.length)
{
$("#search_results").html('No results found.');
}
else
{
$("#search_results").html('');
var oUl = $("#search_results").append("<ul id='lr'></ul>").find("ul");
for (var nCnt = 0; nCnt < oSearchEngine.aResults.length; nCnt++)
{
oUl.append("<li><a href='" + aTl[oSearchEngine.aResults[nCnt]][0] + "?search=" + escape(sValue) + "' target='FrameMain'>" + unescape(aTl[oSearchEngine.aResults[nCnt]][1]) + "</a></li>");
}
$("#lr").treeview({collapsed: false});
}
}
</script>
</head>
<body>
<div id="tabs">
<ul>
<li><a href="#tab-toc">Contents</a></li>
<li><a href="#tab-keywords">Index</a></li>
<li><a href="#tab-search">Search</a></li>
</ul>
<div id="tab-toc">
<ul id="toc" class="filetree toctree">
<li>
<a
href="Intro.html"
class="folder"
target="FrameMain">
Introduction</a>
<ul><li>
<a
href="Introduction.html"
class="file"
target="FrameMain">
Introduction</a>
</li><li>
<a
href="Overview.html"
class="file"
target="FrameMain">
Overview</a>
</li><li>
<a
href="FCEUltraVersionHistory.html"
class="file"
target="FrameMain">
FCE Ultra Version History</a>
</li><li>
<a
href="WhatsNew216.html"
class="file"
target="FrameMain">
What's New? 2.1.6 (changelog)</a>
</li><li>
<a
href="WhatsNew215.html"
class="file"
target="FrameMain">
What's New? 2.1.5 (changelog)</a>
</li><li>
<a
href="WhatsNew214.html"
class="file"
target="FrameMain">
What's New? 2.1.4 (changelog)</a>
</li><li>
<a
href="WhatsNew213.html"
class="file"
target="FrameMain">
What's New? 2.1.3 (changelog)</a>
</li><li>
<a
href="WhatsNew212.html"
class="file"
target="FrameMain">
What's New? 2.1.2 (changelog)</a>
</li><li>
<a
href="WhatsNew211.html"
class="file"
target="FrameMain">
What's New? 2.1.1 (changelog)</a>
</li><li>
<a
href="WhatsNew210.html"
class="file"
target="FrameMain">
What's New? 2.1 (changelog)</a>
</li><li>
<a
href="WhatsNew203.html"
class="file"
target="FrameMain">
What's New? 2.0.3 (changelog)</a>
</li><li>
<a
href="WhatsNew202.html"
class="file"
target="FrameMain">
What's New? 2.0.2 (changelog)</a>
</li><li>
<a
href="WhatsNew201.html"
class="file"
target="FrameMain">
What's New? 2.0.1 (changelog)</a>
</li><li>
<a
href="WhatsNew200.html"
class="file"
target="FrameMain">
What's New? 2.0.0</a>
</li></ul></li><li>
<a
href="General.html"
class="folder"
target="FrameMain">
General</a>
<ul><li>
<a
href="Gettingstarted.html"
class="file"
target="FrameMain">
Getting Started</a>
</li><li>
<a
href="Gamefilecompatibility.html"
class="file"
target="FrameMain">
Game file compatibility</a>
</li><li>
<a
href="CommandLineOptions.html"
class="file"
target="FrameMain">
Command Line Options</a>
</li><li>
<a
href="CustomizingthroughtheConfigFil.html"
class="file"
target="FrameMain">
Customizing through the Config File</a>
</li><li>
<a
href="FamicomDiskSytem.html"
class="file"
target="FrameMain">
Famicom Disk Sytem</a>
</li><li>
<a
href="AVICapturing.html"
class="file"
target="FrameMain">
AVI Capturing</a>
</li><li>
<a
href="MovieRecording.html"
class="file"
target="FrameMain">
Movie Recording</a>
</li><li>
<a
href="NES.html"
class="file"
target="FrameMain">
NES Menu</a>
</li><li>
<a
href="PaletteOptions.html"
class="file"
target="FrameMain">
Palette Options</a>
</li></ul></li><li>
<a
href="Config.html"
class="folder"
target="FrameMain">
Config</a>
<ul><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain">
Menu Items &amp; Submenus</a>
</li><li>
<a
href="Directories.html"
class="file"
target="FrameMain">
Directories</a>
</li><li>
<a
href="GUI.html"
class="file"
target="FrameMain">
GUI</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain">
Input</a>
</li><li>
<a
href="NetworkPlay.html"
class="file"
target="FrameMain">
Network Play</a>
</li><li>
<a
href="Palette.html"
class="file"
target="FrameMain">
Palette</a>
</li><li>
<a
href="SoundOptions.html"
class="file"
target="FrameMain">
Sound</a>
</li><li>
<a
href="Timing.html"
class="file"
target="FrameMain">
Timing</a>
</li><li>
<a
href="Video.html"
class="file"
target="FrameMain">
Video</a>
</li><li>
<a
href="MovieOptions.html"
class="file"
target="FrameMain">
Movie Options</a>
</li><li>
<a
href="MapHotkeys.html"
class="file"
target="FrameMain">
Map Hotkeys</a>
</li><li>
<a
href="ContextMenuItems.html"
class="file"
target="FrameMain">
Context Menu Items</a>
</li></ul></li><li>
<a
href="Tools2.html"
class="folder"
target="FrameMain">
Tools</a>
<ul><li>
<a
href="CheatSearch.html"
class="file"
target="FrameMain">
Cheat Search</a>
</li><li>
<a
href="RAMSearch.html"
class="file"
target="FrameMain">
RAM Search</a>
</li><li>
<a
href="RAMWatch.html"
class="file"
target="FrameMain">
RAM Watch</a>
</li><li>
<a
href="MemoryWatch.html"
class="file"
target="FrameMain">
Memory Watch</a>
</li><li>
<a
href="TASEditor.html"
class="file"
target="FrameMain">
TAS Editor</a>
</li><li>
<a
href="Covertfcm.html"
class="file"
target="FrameMain">
Convert fcm</a>
</li><li>
<a
href="AutoFireConfigurations.html"
class="file"
target="FrameMain">
Auto Fire Settings</a>
</li><li>
<a
href="ExternalInput.html"
class="file"
target="FrameMain">
External Input</a>
</li><li>
<a
href="TextHooker.html"
class="file"
target="FrameMain">
Text Hooker</a>
</li></ul></li><li>
<a
href="Debug.html"
class="folder"
target="FrameMain">
Debug</a>
<ul><li>
<a
href="Debugger.html"
class="file"
target="FrameMain">
Debugger</a>
</li><li>
<a
href="PPUViewer.html"
class="file"
target="FrameMain">
PPU Viewer</a>
</li><li>
<a
href="NameTableViewer.html"
class="file"
target="FrameMain">
Name Table Viewer</a>
</li><li>
<a
href="HexEditor.html"
class="file"
target="FrameMain">
Hex Editor</a>
</li><li>
<a
href="TraceLogger.html"
class="file"
target="FrameMain">
Trace Logger</a>
</li><li>
<a
href="CodeDataLogger.html"
class="file"
target="FrameMain">
Code/Data Logger</a>
</li><li>
<a
href="GameGenieEncoderDecoder.html"
class="file"
target="FrameMain">
Game Genie Encoder/Decoder</a>
</li></ul></li><li>
<a
href="LuaScripting.html"
class="folder"
target="FrameMain">
Lua Scripting</a>
<ul><li>
<a
href="LuaGettingStarted.html"
class="file"
target="FrameMain">
Getting Started</a>
</li><li>
<a
href="LuaFunctionsList.html"
class="file"
target="FrameMain">
Lua Functions List</a>
</li><li>
<a
href="Commands.html"
class="file"
target="FrameMain">
Using Lua</a>
</li><li>
<a
href="LuaBot.html"
class="file"
target="FrameMain">
Lua Bot</a>
</li><li>
<a
href="OverviewofIncludedScripts.html"
class="file"
target="FrameMain">
Overview of Included Scripts</a>
</li></ul></li><li>
<a
href="FAQGuides.html"
class="folder"
target="FrameMain">
FAQ / Guides</a>
<ul><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain">
Troubleshooting</a>
</li><li>
<a
href="ToolAssistedSpeedruns.html"
class="file"
target="FrameMain">
Tool Assisted Speedruns</a>
</li><li>
<a
href="ROMHacking.html"
class="file"
target="FrameMain">
ROM Hacking</a>
</li><li>
<a
href="NESRAMMappingFindingValues.html"
class="file"
target="FrameMain">
NES RAM (Mapping/Finding Values)</a>
</li><li>
<a
href="DebuggerUsageIntermediate.html"
class="file"
target="FrameMain">
Debugger Usage Guide (Intermediate)</a>
</li></ul></li><li>
<a
href="Technicalinformation.html"
class="folder"
target="FrameMain">
Technical Information</a>
<ul><li>
<a
href="Movieformats.html"
class="folder"
target="FrameMain">
Movie &amp; Savestate formats</a>
<ul><li>
<a
href="fm2.html"
class="file"
target="FrameMain">
.fm2</a>
</li><li>
<a
href="fcm.html"
class="file"
target="FrameMain">
.fcm</a>
</li><li>
<a
href="fcs.html"
class="file"
target="FrameMain">
Savestate (.fcs)</a>
</li></ul></li><li>
<a
href="Sound.html"
class="folder"
target="FrameMain">
Sound</a>
<ul><li>
<a
href="NSFFormat.html"
class="file"
target="FrameMain">
NSF Format</a>
</li><li>
<a
href="NESSound.html"
class="file"
target="FrameMain">
NES Sound</a>
</li></ul></li><li>
<a
href="NESProcessor.html"
class="folder"
target="FrameMain">
NES Processing</a>
<ul><li>
<a
href="6502CPU.html"
class="file"
target="FrameMain">
CPU - 6502</a>
</li><li>
<a
href="PPU.html"
class="file"
target="FrameMain">
PPU - 2C02</a>
</li><li>
<a
href="NESScrolling1.html"
class="file"
target="FrameMain">
NES Scrolling 1</a>
</li><li>
<a
href="NESScrolling2.html"
class="file"
target="FrameMain">
NES Scrolling 2</a>
</li></ul></li></ul></li></ul>
</div>
<div id="tab-keywords">
<ul id="keywords" class="filetree indextree">
<li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
"Can't find FDS Bios image when I attempt to load a .fds game!"</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
"Directdraw: Error creating secondary surface"</a>
</li><li>
<a
href="NESRAMMappingFindingValues.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES RAM (Mapping/Finding Values)','NESRAMMappingFindingValues.html']]);"
>
2C02 PPU memory map</a>
</li><li>
<a
href="AutoFireConfigurations.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Auto Fire Settings','AutoFireConfigurations.html']]);"
>
Alternate A and B</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Arkanoid Paddle</a>
</li><li>
<a
href="AutoFireConfigurations.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Auto Fire Settings','AutoFireConfigurations.html']]);"
>
Autofire Offset</a>
</li><li>
<a
href="AutoFireConfigurations.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Auto Fire Settings','AutoFireConfigurations.html']]);"
>
Autofire Pattern</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Auto-Hold</a>
</li><li>
<a
href=""
class="file"
target="FrameMain"
onClick="return false;"
>
Basic Bot</a>
</li><li>
<a
href="AVICapturing.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['AVI Capturing','AVICapturing.html']]);"
>
Capturing a Movie File</a>
</li><li>
<a
href="CheatSearch.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Cheat Search','CheatSearch.html']]);"
>
Cheat Guide</a>
</li><li>
<a
href="CodeDataLogger.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Code/Data Logger','CodeDataLogger.html']]);"
>
Code/Data Logger</a>
</li><li>
<a
href="CommandLineOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Command Line Options','CommandLineOptions.html']]);"
>
Command Line Options</a>
</li><li>
<a
href="GUI.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['GUI','GUI.html'],['Context Menu Items','ContextMenuItems.html']]);"
>
context menu</a>
</li><li>
<a
href="Covertfcm.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Convert fcm','Covertfcm.html']]);"
>
Converting .fcm</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
crash</a>
</li><li>
<a
href="Debugger.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Debugger','Debugger.html']]);"
>
Debugger</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
desyncs</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
Directdraw</a>
</li><li>
<a
href="Directories.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Directories','Directories.html']]);"
>
Directory Overrides</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Disable left+right/up+down</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
disksys.rom</a>
</li><li>
<a
href="NES.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES Menu','NES.html']]);"
>
Eject/Insert Disk</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
Enable Background Input</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
Enable Rewind</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
Enable Run in Background</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
error</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Famicom Controllers</a>
</li><li>
<a
href="FamicomDiskSytem.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Famicom Disk Sytem','FamicomDiskSytem.html']]);"
>
Famicom Disk System</a>
</li><li>
<a
href="PaletteOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Palette Options','PaletteOptions.html']]);"
>
FCEU-13-default_nitsuja.pal</a>
</li><li>
<a
href="PaletteOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Palette Options','PaletteOptions.html']]);"
>
FCEU-15-nitsuja-new.pal</a>
</li><li>
<a
href="fm2.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['.fm2','fm2.html']]);"
>
FCEUX Movie File format</a>
</li><li>
<a
href="PaletteOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Palette Options','PaletteOptions.html']]);"
>
FCEUX.pal</a>
</li><li>
<a
href="fcm.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['.fcm','fcm.html']]);"
>
FCM</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
fds</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
FDS Bios</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
fm2</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
Full screen</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
Game Genie</a>
</li><li>
<a
href="GameGenieEncoderDecoder.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Game Genie Encoder/Decoder','GameGenieEncoderDecoder.html']]);"
>
Game Genie Decoder/Encoder</a>
</li><li>
<a
href="NESRAMMappingFindingValues.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES RAM (Mapping/Finding Values)','NESRAMMappingFindingValues.html']]);"
>
Game RAM Details</a>
</li><li>
<a
href="Gettingstarted.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Getting Started','Gettingstarted.html']]);"
>
Getting Started</a>
</li><li>
<a
href="GUI.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['GUI','GUI.html']]);"
>
GUI</a>
</li><li>
<a
href="Gamefilecompatibility.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Game file compatibility','Gamefilecompatibility.html']]);"
>
Hacked Games</a>
</li><li>
<a
href="HexEditor.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Hex Editor','HexEditor.html']]);"
>
Hex Editor</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
Hide Menu</a>
</li><li>
<a
href="FCEUltraVersionHistory.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['FCE Ultra Version History','FCEUltraVersionHistory.html']]);"
>
History of FCEUX / FCE Ultra</a>
</li><li>
<a
href="Debugger.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Debugger','Debugger.html']]);"
>
Inline Assembler</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Input Configuration</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Input Presets</a>
</li><li>
<a
href="NES.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES Menu','NES.html']]);"
>
Insert Coin</a>
</li><li>
<a
href="Gettingstarted.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Getting Started','Gettingstarted.html']]);"
>
Loadstate</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
Lua</a>
</li><li>
<a
href="LuaFunctionsList.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Lua Functions List','LuaFunctionsList.html']]);"
>
Lua Functions</a>
</li><li>
<a
href=""
class="file"
target="FrameMain"
onClick="return false;"
>
Lua Scripting</a>
</li><li>
<a
href="GameGenieEncoderDecoder.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Game Genie Encoder/Decoder','GameGenieEncoderDecoder.html']]);"
>
Making Game Genie codes</a>
</li><li>
<a
href="MapHotkeys.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Map Hotkeys','MapHotkeys.html']]);"
>
Map Hotkeys</a>
</li><li>
<a
href="NESRAMMappingFindingValues.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES RAM (Mapping/Finding Values)','NESRAMMappingFindingValues.html']]);"
>
Memory Map</a>
</li><li>
<a
href="MemoryWatch.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Memory Watch','MemoryWatch.html']]);"
>
Memory Watch</a>
</li><li>
<a
href="MovieRecording.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Movie Recording','MovieRecording.html']]);"
>
Movie Recording</a>
</li><li>
<a
href="SoundOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Sound','SoundOptions.html']]);"
>
Mute frame advance</a>
</li><li>
<a
href="NameTableViewer.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Name Table Viewer','NameTableViewer.html']]);"
>
Name Table Viewer</a>
</li><li>
<a
href="NESRAMMappingFindingValues.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES RAM (Mapping/Finding Values)','NESRAMMappingFindingValues.html']]);"
>
NES Mapping</a>
</li><li>
<a
href="PaletteOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Palette Options','PaletteOptions.html']]);"
>
Nestopia</a>
</li><li>
<a
href="NetworkPlay.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Network Play','NetworkPlay.html']]);"
>
Network Play</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
PAL Emulation</a>
</li><li>
<a
href="Palette.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Palette','Palette.html'],['Palette Options','PaletteOptions.html'],['Troubleshooting','Troubleshooting.html']]);"
>
Palette</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
Pause After Movie Playback</a>
</li><li>
<a
href="NES.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES Menu','NES.html']]);"
>
Power</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Power Pad</a>
</li><li>
<a
href="PPUViewer.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['PPU Viewer','PPUViewer.html']]);"
>
PPU Viewer</a>
</li><li>
<a
href=""
class="file"
target="FrameMain"
onClick="return false;"
>
RAM Filter</a>
</li><li>
<a
href="NES.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES Menu','NES.html']]);"
>
Reset</a>
</li><li>
<a
href="GUI.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['GUI','GUI.html']]);"
>
right-click</a>
</li><li>
<a
href="ROMHacking.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['ROM Hacking','ROMHacking.html']]);"
>
ROM Hacking</a>
</li><li>
<a
href="Gettingstarted.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Getting Started','Gettingstarted.html']]);"
>
Savestates</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Setting up controllers</a>
</li><li>
<a
href="ToggleSwitchesHideMenuetc.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Menu Items & Submenus','ToggleSwitchesHideMenuetc.html']]);"
>
Show Movie Status Icon</a>
</li><li>
<a
href="Video.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Video','Video.html'],['Troubleshooting','Troubleshooting.html']]);"
>
slow emulation</a>
</li><li>
<a
href="SoundOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Sound','SoundOptions.html']]);"
>
Sound Configuration</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
Sound crackle</a>
</li><li>
<a
href="NES.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['NES Menu','NES.html']]);"
>
Switch Disk Side</a>
</li><li>
<a
href="Debugger.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Debugger','Debugger.html']]);"
>
Symbolic Debugging</a>
</li><li>
<a
href="TASEditor.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['TAS Editor','TASEditor.html']]);"
>
TAS Edit</a>
</li><li>
<a
href="Timing.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Timing','Timing.html']]);"
>
Timings</a>
</li><li>
<a
href="ToolAssistedSpeedruns.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Tool Assisted Speedruns','ToolAssistedSpeedruns.html']]);"
>
Tool Assisted Speedruns</a>
</li><li>
<a
href="TraceLogger.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Trace Logger','TraceLogger.html']]);"
>
Trace Logger</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
Troubleshooting</a>
</li><li>
<a
href="Gettingstarted.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Getting Started','Gettingstarted.html']]);"
>
Undo</a>
</li><li>
<a
href="ExternalInput.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['External Input','ExternalInput.html']]);"
>
Use External Input</a>
</li><li>
<a
href="Gamefilecompatibility.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Game file compatibility','Gamefilecompatibility.html']]);"
>
Valid Game Types</a>
</li><li>
<a
href="Video.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Video','Video.html']]);"
>
Video Configuration</a>
</li><li>
<a
href="Troubleshooting.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Troubleshooting','Troubleshooting.html']]);"
>
Vista</a>
</li><li>
<a
href="SoundOptions.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Sound','SoundOptions.html']]);"
>
Volume</a>
</li><li>
<a
href="WhatsNew200.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['What\'s New? 2.0.0','WhatsNew200.html']]);"
>
What's New?</a>
</li><li>
<a
href="Input.html"
class="file"
target="FrameMain"
onClick="return ShowKwPopup(this, [['Input','Input.html']]);"
>
Zapper</a>
</li></ul>
</div>
<div id="tab-search">
<form onsubmit="PerformSearch(); return false;">
<label for="search_value">Search:</label>
<input id="search_value" name="search_value"></input>
<input type="submit" value="search"/>
</form>
<div id="search_results"></div>
</div>
</div>
</body>
</html>