Web site - lots more changes and content
This commit is contained in:
parent
da53ca1ca1
commit
ce6587cf26
|
@ -0,0 +1,68 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
||||||
|
<title>Convert FCM to FM2</title>
|
||||||
|
<link href="fceux.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="masthead">
|
||||||
|
</div>
|
||||||
|
<div id="top_nav">
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="left_col">
|
||||||
|
</div>
|
||||||
|
<div id="page_content">
|
||||||
|
<h1>Convert FCM to FM2</h1>
|
||||||
|
<p>This page documents the conversion process of .fcm to .fm2. It also documents known issues with conversion as well as known cases where conversion fails.</p>
|
||||||
|
<p>FCEUX uses the file format .fm2. It does NOT play .fcm files (Older versions of FCEU). However any .fcm file can be converted to .fm2 by opening FCEUX and going to tools > Convert .fm2. You can mass convert files by highlighting them in the open dialog box. On the SDL build, you can run ./fceux --fcmconvert filename.fcm</p>
|
||||||
|
<dd><p><b>See also:</b></p></dd>
|
||||||
|
<dd><dd><li>FM2 format</li></dd></dd>
|
||||||
|
<dd><dd><li>FCM format</li></dd></dd>
|
||||||
|
<dd><dd><li>Movie making</li></dd></dd>
|
||||||
|
<h2>FM2 concept</h2>
|
||||||
|
<p>The old FCEUltra had a big problem with its movie recording. Every single movie was recorded with power-on, followed by a savestate. This means that WRAM (or save RAM) was being stored in its initialized state. As a consequence, many games that use save systems would go through an accelerated boot process since the save files were already initialized.</p>
|
||||||
|
<p>Typically, a movie maker would load his game and let it sit at the title screen while he sipped his drink or adjusted his pants or steeled his nerves or whatever and then triggered the movie record. At that point the savefile was initialized, and the recording was already compromised.
|
||||||
|
<p>When preparing FCEUX for release, we decided that this was unacceptable. Therefore, every FCEUX movie is recorded from a fresh power-on with no WRAM or save RAM. Additionally, the "record from reset" was taken out because it is even worse. Now the game would be starting from initialized WRAM and initialized main ram. This can further confuse matters.</p>
|
||||||
|
<p>So, your movies might desync because on FCEUX the game is taking longer to boot, while it is initializing its WRAM and/or main ram.</p>
|
||||||
|
<p>Luckily, these are often easy to fix: since FM2 is a text format, it is trivial to insert additional empty frames into the correct locations during the game boot-up process. We have successfully used this approach to salvage a few movies. So, if you have trouble, let us know, and maybe since we have a bit of experience, we can help.</p>
|
||||||
|
<p>Also, when a game is initializing, I bet it is uncommon for the RNG to be running so you might get lucky there also.</p>
|
||||||
|
<p>Another trick is to add a boot-up time window to the beginning of your movie. Add empty frames to the very beginning, followed by the very first converted frame which should include a reset flag. This simulates what FCEUltra did, giving the game time to initialize its WRAM and possibly main RAM before your input events begin.</p>
|
||||||
|
<p>We have been excruciatingly careful not to do anything else which would adversely affect synching. We take this seriously. We have only found few desynching movies so far that we aren't able to fix.</p>
|
||||||
|
<h2>Sync issues</h2>
|
||||||
|
<p>Nearly all published .fcm files will convert without problem</p>
|
||||||
|
<p>Exceptions are noted:
|
||||||
|
<dd><li>Any movie made with FCEU .10 or earlier (such as <a href="http://tasvideos.org/192M.html">Dragon's Lair</a>, <a href="http://tasvideos.org/193M.html">Powerblade</a></li></dd>
|
||||||
|
<dd><li>Any <a href="http://tasvideos.org/519M.html">Dragon Warrior 4</a> movie due to quirky VRAM handling of this game. Movies will only sync in the version in which they were created.</li></dd>
|
||||||
|
<dd><li>Any movie that starts from savestate (since savestates aren't compatible between FCEU and FCEUX) (Note: old savestates from 0.98.x can be loaded into FCEUX. However, they can not be used with movies since the new savestates handle movie data in drastically different ways.)</li></dd>
|
||||||
|
<dd><li><a href="http://tasvideos.org/355M.html">Battle Toads from FCEU .12</a> - Due to significant mapper 7 changes since FCEU .13</li></dd>
|
||||||
|
</p>
|
||||||
|
<p>Converting from FMV to FCM to FM2 may work, but it fails at least for these movies:</p>
|
||||||
|
<dd><a href="http://tasvideos.org/89M.html">Boku Dracula-kun by Phil and Genisto</a></dd>
|
||||||
|
<h3>Known desyncs fixed with added frames</h3>
|
||||||
|
<p>Some movies will desync but can be fixed by adding frames to the beginning of the movie. Basically any movie that was recorded from soft reset and uses battery backed ram will probably desync. This is because the soft reset allowed the SRAM to be cleared ahead of time, so frames were not needed to clear it in the movie (This is arguably cheating anyway, and recording from soft reset was removed in FCEUX).</p>
|
||||||
|
<p>Known desyncs that were fixed by adding frames:</p>
|
||||||
|
<dd><a href="http://tasvideos.org/868M.html">Legent of Zelda "1st Quest" by Baxter and Phil</a> - 3 frames added</dd>
|
||||||
|
<dd><a href="http://tasvideos.org/222M.html">Vice: Project Doom by FunkDoc</a> - 10 frames added</dd>
|
||||||
|
<h3>Known desyncs that could not be snced (to our knowledge)</h3>
|
||||||
|
<p>Movies that don't meet the above criteria but desync anyway</p>
|
||||||
|
<dd><a href="http://tasvideos.org/1021M.html">Addams Family</a> - Nothing up to 16 frames worked</dd>
|
||||||
|
<dd><a href="http://tasvideos.org/589M.html">Kattou Ninden Teyandee by Ferret Warlord</a> - Nothing up to 16 frames worked</dd>
|
||||||
|
<dd><a href="http://tasvideos.org/469M.html">Dragon Warrior by acmlm</a> - Adding 2 frames makes it sync up to around 46540</dd>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer">
|
||||||
|
<a href="home.html">Home</a> | <a href="download.html">Download</a> |
|
||||||
|
<a href="documentation.html">Documentation</a> | <a href="version.html">
|
||||||
|
Version History</a> | <a href="contact.html">Contact</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -0,0 +1,133 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
||||||
|
<title>FM2</title>
|
||||||
|
<link href="fceux.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="masthead">
|
||||||
|
</div>
|
||||||
|
<div id="top_nav">
|
||||||
|
</div>
|
||||||
|
<div id="container">
|
||||||
|
<div id="left_col">
|
||||||
|
</div>
|
||||||
|
<div id="page_content">
|
||||||
|
<h1>FM2 Movie file format</h1>
|
||||||
|
<p>FM2 is the movie capture format of FCEUX</p>
|
||||||
|
<h2>FM2 file format description</h2>
|
||||||
|
<p>FCEUX uses a new movie file format - .fm2</p>
|
||||||
|
<p>This differs from the previous FCE Ultra movie format (.fcm) in the following ways:</p>
|
||||||
|
<dd><li>It is completely text based; allowing easy movie editing/splicing</li></dd>
|
||||||
|
<dd><li>An imbedded GUID so FCEUX can tell if a savestate belongs to a particular movie file</li></dd>
|
||||||
|
<dd><li>Movies recorded from Start (Power-on) no longer have a redundant savestate</li></dd>
|
||||||
|
<dd><li>Contains mouse input for recording the Zapper and Arkanoid Paddle input</li></dd>
|
||||||
|
<p></p>
|
||||||
|
<h2>Format</h2>
|
||||||
|
<p>FM2 is ASCII plain text. It consists of several key-value pairs followed by an inputlog section.</p>
|
||||||
|
<p>The inputlog section can be identified by its starting with a | (pipe). The inputlog section terminates at eof. Newlines may be \r\n or \n</p>
|
||||||
|
<p>Key-value pairs consist of a key identifier, followed by a space separator, followed by the value text. Value text is always terminated by a newline, which the value text will not include. The value text is parsed differently depending on the type of the key. The key-value pairs may be in any order, except that the first key must be version.</p>
|
||||||
|
<p>Integer keys (also used for Booleans, with a 1 or 0) will have a value that is a simple integer not to exceed 32bits</p>
|
||||||
|
<li>version (required) - the version of the movie file format; for now it is always 3</li>
|
||||||
|
<li>emuVersion (required) - the version of the emulator used to produce the movie</li>
|
||||||
|
<li>rerecordCount (optional) - the rerecord count</li>
|
||||||
|
<li>palFlag (bool) (optional) - true if the movie uses pal timing</li>
|
||||||
|
<li>fourscore (bool) (*note C) - true if a fourscore was used</li>
|
||||||
|
<li>port0, port1 (*note C) - indicates the types of input devices. Supported values are:
|
||||||
|
<ul>SI_GAMEPAD = 1</ul>
|
||||||
|
<ul>SI_ZAPPER = 2 </ul>
|
||||||
|
</li>
|
||||||
|
<li>port2 (required) - indicates the type of the FCExp port device which was attached. Supported values are:
|
||||||
|
<ul>SIFC_NONE = 0</ul>
|
||||||
|
</li>
|
||||||
|
<h2>Header</h2>
|
||||||
|
<p>String keys have values that consist of the remainder of the key-value pair line. As a consequence, string values cannot contain newlines.</p>
|
||||||
|
<li>romFilename (required) - the name of the file used to record the movie </li>
|
||||||
|
<li>comment (optional) - simply a memo.
|
||||||
|
<li>by convention, the first token in the comment value is the subject of the comment.</li>
|
||||||
|
<li>by convention, subsequent comments with the same subject will have their ordering preserved and may be used to approximate multiline comments.</li>
|
||||||
|
<li>by convention, the author of the movie should be stored in comment(s) with a subject of: author</li>
|
||||||
|
</li>
|
||||||
|
<li>subtitle (optional) - a message that will be displayed on screen when movie is played back (unless Subtitles are turned off, see Movie options).
|
||||||
|
<li>by convention, subtitles will begin with the word subtitle</li>
|
||||||
|
<li>by convention, an integer value will proceed which will indicate the frame that the subtitle will be displayed</li>
|
||||||
|
<li>by convention, a string of text will follow which will be the string displayed</li>
|
||||||
|
<li>example:
|
||||||
|
<li>subtitle 1000 Level Two</li>
|
||||||
|
<li>At frame 1000 the words "Level Two" will be displayed on the screen</li>
|
||||||
|
</li>
|
||||||
|
</li>
|
||||||
|
<p>Hex string keys (used for binary blobs) will have a value that is like 0x0123456789ABCDEF... </p>
|
||||||
|
<li>romChecksum (required) - the MD5 hash of the ROM which was used to record the movie </li>
|
||||||
|
<li>savestate (optional) - a fcs savestate blob, in case a movie was recorded from savestate</li>
|
||||||
|
<p>GUID keys have a value which is in the standard GUID format: 452DE2C3-EF43-2FA9-77AC-0677FC51543B</p>
|
||||||
|
<li>GUID (required) a unique identifier for a movie, generated when the movie is created, which is used when loading a savestate to make sure it belongs to the current movie.</li>
|
||||||
|
<h2>Inputlog</h2>
|
||||||
|
<p>The inputlog section consists of lines beginning and ending with a | (pipe). The fields are as follows, except as noted in note C.</p>
|
||||||
|
<table border="1">
|
||||||
|
<tr>
|
||||||
|
<td>c</td>
|
||||||
|
<td>port0</td>
|
||||||
|
<td>port1</td>
|
||||||
|
<td>port2</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<p>Field c is a variable length decimal integer which is a bitfield corresponding to miscellaneous input states which are valid at the start of the frame. Current values for this are</p>
|
||||||
|
<li>MOVIECMD_RESET = 1</li>
|
||||||
|
<p>The format of port0, port1, port2 depends on which types of devices were attached.</p>
|
||||||
|
<h4>SI_GAMEPAD</h4>
|
||||||
|
<li>the field consists of eight characters which constitute a bitfield.</li>
|
||||||
|
<li>any character other than ' ' or '.' means that the button was pressed. By convention, the following mnemonics will be used in a column to remind us of which button corresponds to which column:
|
||||||
|
<li>RLDUTSBA (Right,Left,Down,Up,sTart,Select,B,A)</li>
|
||||||
|
</li>
|
||||||
|
<h4>SI_ZAPPER</h4>
|
||||||
|
<li>XXX YYY B Q Z</li>
|
||||||
|
<li>XXX: %03d, the x position of the mouse</li>
|
||||||
|
<li>YYY: %03d, the y position of the mouse</li>
|
||||||
|
<li>B: %1d, 1 if the mouse button is pressed; 0 if not</li>
|
||||||
|
<li>Q: %1d, an internal value used by the emulator's zapper code (this is most unfortunate..)</li>
|
||||||
|
<li>Z: %d, a variable-length decimal integer; an internal value used by the emulator's zapper code (this is even more unfortunate..)</li>
|
||||||
|
|
||||||
|
<h4>SIFC_NONE</h4>
|
||||||
|
<li>this field must always be empty</li>
|
||||||
|
<h3>Notes</h3>
|
||||||
|
<p>There is no key-value pair that indicates the length of the movie. This must be read by scanning the inputlog and counting the number of lines.</p>
|
||||||
|
<p>All movies start from power-on, unless a savestate key-value is present</p>
|
||||||
|
<p>If a fourscore is used, then port0 and port1 are irrelevant and ignored</p>
|
||||||
|
<p>If fourscore, the input types must all be gamepads
|
||||||
|
<dd>{player1 player2 player3 player4}</dd>
|
||||||
|
<dd>
|
||||||
|
<table border="1">
|
||||||
|
<tr>
|
||||||
|
<td>c</td>
|
||||||
|
<td>ABSTUDLR</td>
|
||||||
|
<td>ABSTUDLR</td>
|
||||||
|
<td>ABSTUDLR</td>
|
||||||
|
<td>ABSTUDLR</td>
|
||||||
|
<td>port2</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
</p>
|
||||||
|
<p>If fourscore is not used, then port0 and port1 are <b>required</b></p>
|
||||||
|
<h2>Emulator framerate constants</h2>
|
||||||
|
<p>FCEUX uses these framerate constants:</p>
|
||||||
|
<li>NTSC: 1008307711 /256/65536 = 60.099822938442230224609375</li>
|
||||||
|
<li>PAL : 838977920 /256/65536 = 50.00698089599609375</li>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer">
|
||||||
|
<a href="home.html">Home</a> | <a href="download.html">Download</a> |
|
||||||
|
<a href="documentation.html">Documentation</a> | <a href="version.html">
|
||||||
|
Version History</a> | <a href="contact.html">Contact</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -1,5 +1,4 @@
|
||||||
Make a header with navigation buttons for all pages
|
Make a header with navigation buttons for all pages
|
||||||
Modify H3 css with a different gray shade
|
Add a link to the manual on documentation, add a section for movie recording as well, in that section add links to fm2, fcm and convert fcm
|
||||||
Make the li css property the same color as H3
|
Convert FCM to FM2 - add links on see also list
|
||||||
Add a link to the manual on documentation
|
Home image (SMB3) needs to be to have some kind of text wrap
|
||||||
Make sure all pages of a name
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 17:06:09 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 03:58:11 -0000
|
||||||
|
vti_title:SR|Convert FCM to FM2
|
||||||
|
vti_backlinkinfo:VX|
|
||||||
|
vti_nexttolasttimemodified:TW|03 Dec 2009 16:49:20 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 17:06:09 -0000
|
||||||
|
vti_filesize:IR|6051
|
||||||
|
vti_cachedtitle:SR|Convert FCM to FM2
|
||||||
|
vti_cachedbodystyle:SR|<body>
|
||||||
|
vti_cachedlinkinfo:VX|Q|fceux.css H|http://tasvideos.org/192M.html H|http://tasvideos.org/193M.html H|http://tasvideos.org/519M.html H|http://tasvideos.org/355M.html H|http://tasvideos.org/89M.html H|http://tasvideos.org/868M.html H|http://tasvideos.org/222M.html H|http://tasvideos.org/1021M.html H|http://tasvideos.org/589M.html H|http://tasvideos.org/469M.html H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
||||||
|
vti_cachedsvcrellinks:VX|FQUS|fceux.css NHHS|http://tasvideos.org/192M.html NHHS|http://tasvideos.org/193M.html NHHS|http://tasvideos.org/519M.html NHHS|http://tasvideos.org/355M.html NHHS|http://tasvideos.org/89M.html NHHS|http://tasvideos.org/868M.html NHHS|http://tasvideos.org/222M.html NHHS|http://tasvideos.org/1021M.html NHHS|http://tasvideos.org/589M.html NHHS|http://tasvideos.org/469M.html FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8
|
||||||
|
vti_charset:SR|utf-8
|
|
@ -0,0 +1,21 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 16:20:58 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 03:58:11 -0000
|
||||||
|
vti_title:SR|FM2
|
||||||
|
vti_backlinkinfo:VX|
|
||||||
|
vti_nexttolasttimemodified:TW|03 Dec 2009 16:20:42 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 16:20:58 -0000
|
||||||
|
vti_filesize:IR|7137
|
||||||
|
vti_cachedtitle:SR|FM2
|
||||||
|
vti_cachedbodystyle:SR|<body>
|
||||||
|
vti_cachedlinkinfo:VX|Q|fceux.css H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
||||||
|
vti_cachedsvcrellinks:VX|FQUS|fceux.css FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8
|
||||||
|
vti_charset:SR|utf-8
|
|
@ -0,0 +1,7 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 17:17:08 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|215
|
||||||
|
vti_backlinkinfo:VX|
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
|
@ -1,13 +1,13 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timelastmodified:TR|17 Nov 2009 21:58:20 -0000
|
vti_timelastmodified:TR|21 Nov 2009 03:58:11 -0000
|
||||||
vti_timecreated:TR|26 Sep 2009 01:08:30 -0000
|
vti_timecreated:TR|26 Sep 2009 01:08:30 -0000
|
||||||
vti_title:SR|contact
|
vti_title:SR|contact
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html
|
vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html
|
||||||
vti_nexttolasttimemodified:TW|17 Nov 2009 21:57:35 -0000
|
vti_nexttolasttimemodified:TW|17 Nov 2009 21:57:35 -0000
|
||||||
vti_cacheddtm:TX|17 Nov 2009 21:58:20 -0000
|
vti_cacheddtm:TX|21 Nov 2009 03:58:11 -0000
|
||||||
vti_filesize:IR|1260
|
vti_filesize:IR|1260
|
||||||
vti_cachedtitle:SR|contact
|
vti_cachedtitle:SR|contact
|
||||||
vti_cachedbodystyle:SR|<body>
|
vti_cachedbodystyle:SR|<body>
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timelastmodified:TR|02 Oct 2009 15:44:18 -0000
|
vti_timelastmodified:TR|03 Dec 2009 15:23:35 -0000
|
||||||
vti_timecreated:TR|23 Sep 2009 14:13:18 -0000
|
vti_timecreated:TR|23 Sep 2009 14:13:18 -0000
|
||||||
vti_title:SR|Untitled 1
|
vti_title:SR|Documentation
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html
|
vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html
|
||||||
vti_nexttolasttimemodified:TW|26 Sep 2009 01:23:06 -0000
|
vti_nexttolasttimemodified:TW|21 Nov 2009 03:58:11 -0000
|
||||||
vti_cacheddtm:TX|02 Oct 2009 15:44:18 -0000
|
vti_cacheddtm:TX|03 Dec 2009 15:23:35 -0000
|
||||||
vti_filesize:IR|1272
|
vti_filesize:IR|1275
|
||||||
vti_cachedtitle:SR|Untitled 1
|
vti_cachedtitle:SR|Documentation
|
||||||
vti_cachedbodystyle:SR|<body>
|
vti_cachedbodystyle:SR|<body>
|
||||||
vti_cachedlinkinfo:VX|Q|fceux.css H|{54E785A1-1E42-4B8F-B3E2-94BAA91750B9}.htm H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
vti_cachedlinkinfo:VX|Q|fceux.css H|{54E785A1-1E42-4B8F-B3E2-94BAA91750B9}.htm H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
||||||
vti_cachedsvcrellinks:VX|FQUS|fceux.css NHUS|{54E785A1-1E42-4B8F-B3E2-94BAA91750B9}.htm FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
vti_cachedsvcrellinks:VX|FQUS|fceux.css NHUS|{54E785A1-1E42-4B8F-B3E2-94BAA91750B9}.htm FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timelastmodified:TR|17 Nov 2009 21:50:26 -0000
|
vti_timelastmodified:TR|03 Dec 2009 15:22:32 -0000
|
||||||
vti_timecreated:TR|23 Sep 2009 14:12:20 -0000
|
vti_timecreated:TR|23 Sep 2009 14:12:20 -0000
|
||||||
vti_title:SR|Untitled 1
|
vti_title:SR|Downloads
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html
|
vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html
|
||||||
vti_nexttolasttimemodified:TW|17 Nov 2009 21:49:28 -0000
|
vti_nexttolasttimemodified:TW|21 Nov 2009 03:58:11 -0000
|
||||||
vti_cacheddtm:TX|17 Nov 2009 21:50:26 -0000
|
vti_cacheddtm:TX|03 Dec 2009 15:22:32 -0000
|
||||||
vti_filesize:IR|1184
|
vti_filesize:IR|1183
|
||||||
vti_cachedtitle:SR|Untitled 1
|
vti_cachedtitle:SR|Downloads
|
||||||
vti_cachedbodystyle:SR|<body>
|
vti_cachedbodystyle:SR|<body>
|
||||||
vti_cachedlinkinfo:VX|Q|fceux.css H|http://fceux.com/zip H|https://sourceforge.net/projects/fceultra/files/Binaries/2.1.2\\ binaries/fceux-2.1.2-win32.zip/download H|https://sourceforge.net/projects/fceultra/files/Source\\ Code/2.1.2\\ src/fceux-2.1.2.src.tar.bz2/download H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
vti_cachedlinkinfo:VX|Q|fceux.css H|http://fceux.com/zip H|https://sourceforge.net/projects/fceultra/files/Binaries/2.1.2\\ binaries/fceux-2.1.2-win32.zip/download H|https://sourceforge.net/projects/fceultra/files/Source\\ Code/2.1.2\\ src/fceux-2.1.2.src.tar.bz2/download H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
||||||
vti_cachedsvcrellinks:VX|FQUS|fceux.css NHHS|http://fceux.com/zip NHSS|https://sourceforge.net/projects/fceultra/files/Binaries/2.1.2\\ binaries/fceux-2.1.2-win32.zip/download NHSS|https://sourceforge.net/projects/fceultra/files/Source\\ Code/2.1.2\\ src/fceux-2.1.2.src.tar.bz2/download FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
vti_cachedsvcrellinks:VX|FQUS|fceux.css NHHS|http://fceux.com/zip NHSS|https://sourceforge.net/projects/fceultra/files/Binaries/2.1.2\\ binaries/fceux-2.1.2-win32.zip/download NHSS|https://sourceforge.net/projects/fceultra/files/Source\\ Code/2.1.2\\ src/fceux-2.1.2.src.tar.bz2/download FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|30 Nov 2009 00:07:58 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|30 Nov 2009 00:07:58 -0000
|
||||||
|
vti_cacheddtm:TX|30 Nov 2009 00:07:58 -0000
|
||||||
|
vti_filesize:IR|985
|
||||||
|
vti_cachedtitle:SR|FCEUX Help
|
||||||
|
vti_cachedlinkinfo:VX|F|files/toc.htm F|files/{E3064992-D632-4845-8F38-20ED1A58E4D2}.htm
|
||||||
|
vti_cachedsvcrellinks:VX|FFUS|files/toc.htm FFUS|files/{E3064992-D632-4845-8F38-20ED1A58E4D2}.htm
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_metatags:VR|generator HelpNDoc\\ Free
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_generator:SR|HelpNDoc Free
|
||||||
|
vti_hasframeset:BR|true
|
||||||
|
vti_title:SR|FCEUX Help
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -1,10 +1,12 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timelastmodified:TR|17 Nov 2009 23:38:28 -0000
|
vti_timelastmodified:TR|03 Dec 2009 17:28:20 -0000
|
||||||
vti_timecreated:TR|23 Sep 2009 14:27:32 -0000
|
vti_timecreated:TR|23 Sep 2009 14:27:32 -0000
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_backlinkinfo:VX|contact.html home.html download.html version.html documentation.html
|
vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html version.html documentation.html
|
||||||
vti_nexttolasttimemodified:TW|17 Nov 2009 23:37:49 -0000
|
vti_nexttolasttimemodified:TW|03 Dec 2009 17:28:15 -0000
|
||||||
vti_cacheddtm:TX|17 Nov 2009 23:38:28 -0000
|
vti_cacheddtm:TX|03 Dec 2009 17:28:20 -0000
|
||||||
vti_filesize:IR|579
|
vti_filesize:IR|918
|
||||||
|
vti_cachedlinkinfo:VX|S|assests/ICON_1.ICO
|
||||||
|
vti_cachedsvcrellinks:VX|FSUS|assests/ICON_1.ICO
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timelastmodified:TR|02 Oct 2009 15:48:22 -0000
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
vti_timecreated:TR|23 Sep 2009 14:11:28 -0000
|
vti_timecreated:TR|23 Sep 2009 14:11:28 -0000
|
||||||
vti_title:SR|FCEUX
|
vti_title:SR|FCEUX
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_backlinkinfo:VX|contact.html home.html download.html version.html documentation.html
|
vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html version.html documentation.html
|
||||||
vti_nexttolasttimemodified:TW|02 Oct 2009 15:43:50 -0000
|
vti_nexttolasttimemodified:TW|02 Oct 2009 15:43:50 -0000
|
||||||
vti_cacheddtm:TX|02 Oct 2009 15:43:50 -0000
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
vti_filesize:IR|1384
|
vti_filesize:IR|4481
|
||||||
vti_cachedtitle:SR|FCEUX
|
vti_cachedtitle:SR|FCEUX
|
||||||
vti_cachedbodystyle:SR|<body>
|
vti_cachedbodystyle:SR|<body>
|
||||||
vti_cachedlinkinfo:VX|Q|fceux.css S|assests/NES.png S|assests/Famicom.jpg S|assests/FCEUX-main.png H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
vti_cachedlinkinfo:VX|Q|fceux.css S|assests/NES.png S|assests/Famicom.jpg S|assests/FCEUX-main.png H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|337
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_backlinkinfo:VX|version.html
|
|
@ -0,0 +1,14 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|365
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_backlinkinfo:VX|version.html
|
|
@ -0,0 +1,14 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|3911
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_backlinkinfo:VX|version.html
|
|
@ -0,0 +1,14 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|2805
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_backlinkinfo:VX|version.html
|
|
@ -0,0 +1,14 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|3926
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_backlinkinfo:VX|version.html
|
|
@ -0,0 +1,17 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|2682
|
||||||
|
vti_cachedtitle:SR|Press Release 2.1.2
|
||||||
|
vti_cachedbodystyle:SR|<body>
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_title:SR|Press Release 2.1.2
|
||||||
|
vti_backlinkinfo:VX|version.html
|
|
@ -0,0 +1,14 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_cacheddtm:TX|03 Dec 2009 14:30:16 -0000
|
||||||
|
vti_filesize:IR|7833
|
||||||
|
vti_cachedneedsrewrite:BR|false
|
||||||
|
vti_cachedhasbots:BR|false
|
||||||
|
vti_cachedhastheme:BR|false
|
||||||
|
vti_cachedhasborder:BR|false
|
||||||
|
vti_charset:SR|utf-8
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -1,18 +1,18 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timelastmodified:TR|02 Oct 2009 15:44:01 -0000
|
vti_timelastmodified:TR|03 Dec 2009 17:12:18 -0000
|
||||||
vti_timecreated:TR|23 Sep 2009 14:12:55 -0000
|
vti_timecreated:TR|23 Sep 2009 14:12:55 -0000
|
||||||
vti_title:SR|Untitled 1
|
vti_title:SR|FCEUX versions
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_backlinkinfo:VX|contact.html home.html download.html documentation.html version.html
|
vti_backlinkinfo:VX|contact.html home.html download.html FM2.html ConvertFCMtoFM2.html documentation.html version.html
|
||||||
vti_nexttolasttimemodified:TW|26 Sep 2009 01:33:52 -0000
|
vti_nexttolasttimemodified:TW|03 Dec 2009 17:11:54 -0000
|
||||||
vti_cacheddtm:TX|02 Oct 2009 15:44:01 -0000
|
vti_cacheddtm:TX|03 Dec 2009 17:12:18 -0000
|
||||||
vti_filesize:IR|6555
|
vti_filesize:IR|7222
|
||||||
vti_cachedtitle:SR|Untitled 1
|
vti_cachedtitle:SR|FCEUX versions
|
||||||
vti_cachedbodystyle:SR|<body>
|
vti_cachedbodystyle:SR|<body>
|
||||||
vti_cachedlinkinfo:VX|Q|fceux.css H|http://www.geocities.co.jp/Playtown/2004/fce.htm H|http://tasvideos.org H|http://code.google.com/p/fceu/ H|http://www.the-interweb.com/serendipity/index.php H|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm H|http://sourceforge.net/projects/fceumm/ H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
vti_cachedlinkinfo:VX|Q|fceux.css H|pressrelease-2.1.2.html H|pressrelease-2.1.1.html H|pressrelease-2.1.0.html H|pressrelease-2.0.3.html H|pressrelease-2.0.2.html H|pressrelease-2.0.1.html H|pressrelease-2.0.0.html H|http://www.geocities.co.jp/Playtown/2004/fce.htm H|http://tasvideos.org H|http://code.google.com/p/fceu/ H|http://www.the-interweb.com/serendipity/index.php H|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm H|http://sourceforge.net/projects/fceumm/ H|home.html H|download.html H|documentation.html H|version.html H|contact.html
|
||||||
vti_cachedsvcrellinks:VX|FQUS|fceux.css NHHS|http://www.geocities.co.jp/Playtown/2004/fce.htm NHHS|http://tasvideos.org NHHS|http://code.google.com/p/fceu/ NHHS|http://www.the-interweb.com/serendipity/index.php NHHS|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm NHHS|http://sourceforge.net/projects/fceumm/ FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
vti_cachedsvcrellinks:VX|FQUS|fceux.css FHUS|pressrelease-2.1.2.html FHUS|pressrelease-2.1.1.html NHUS|pressrelease-2.1.0.html FHUS|pressrelease-2.0.3.html FHUS|pressrelease-2.0.2.html FHUS|pressrelease-2.0.1.html FHUS|pressrelease-2.0.0.html NHHS|http://www.geocities.co.jp/Playtown/2004/fce.htm NHHS|http://tasvideos.org NHHS|http://code.google.com/p/fceu/ NHHS|http://www.the-interweb.com/serendipity/index.php NHHS|http://www.ximwix.net/boneyard/design19/xb/texthooker.htm NHHS|http://sourceforge.net/projects/fceumm/ FHUS|home.html FHUS|download.html FHUS|documentation.html FHUS|version.html FHUS|contact.html
|
||||||
vti_cachedneedsrewrite:BR|false
|
vti_cachedneedsrewrite:BR|false
|
||||||
vti_cachedhasbots:BR|false
|
vti_cachedhasbots:BR|false
|
||||||
vti_cachedhastheme:BR|false
|
vti_cachedhastheme:BR|false
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -16,7 +16,7 @@ vti_navbuttonnextlabel:SR|Next
|
||||||
vti_approvallevels:VR|Approved Rejected Pending\\ Review
|
vti_approvallevels:VR|Approved Rejected Pending\\ Review
|
||||||
vti_showhiddenpages:IR|1
|
vti_showhiddenpages:IR|1
|
||||||
vti_hassearchbot:BR|false
|
vti_hassearchbot:BR|false
|
||||||
vti_dependenciesood:IR|0
|
vti_dependenciesood:IR|1
|
||||||
vti_navbuttonhomelabel:SR|Home
|
vti_navbuttonhomelabel:SR|Home
|
||||||
vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirBrowse vti_ServiceMarkUrlDirExec vti_ServiceMarkUrlDirScript vti_ACIPAddresses vti_ServerEmailTransport vti_ServerIndexServer vti_ServerASP vti_ServerCollab vti_ServerWebParts vti_RulesScript vti_TimedDocEvents
|
vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirBrowse vti_ServiceMarkUrlDirExec vti_ServiceMarkUrlDirScript vti_ACIPAddresses vti_ServerEmailTransport vti_ServerIndexServer vti_ServerASP vti_ServerCollab vti_ServerWebParts vti_RulesScript vti_TimedDocEvents
|
||||||
vti_categories:VR|Travel Expense\\ Report Business Competition Goals/Objectives Ideas Miscellaneous Waiting VIP In\\ Process Planning Schedule
|
vti_categories:VR|Travel Expense\\ Report Business Competition Goals/Objectives Ideas Miscellaneous Waiting VIP In\\ Process Planning Schedule
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 04:16:36 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 04:16:36 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 04:16:36 -0000
|
||||||
|
vti_filesize:IR|16994
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 00:03:35 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 00:03:35 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 00:03:35 -0000
|
||||||
|
vti_filesize:IR|12154
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 04:32:35 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 04:32:35 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 04:32:35 -0000
|
||||||
|
vti_filesize:IR|28719
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 04:40:53 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 04:40:53 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 04:40:53 -0000
|
||||||
|
vti_filesize:IR|7970
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 14:32:34 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 14:32:34 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 14:32:34 -0000
|
||||||
|
vti_filesize:IR|13085
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -1,9 +1,9 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_timelastmodified:TR|21 Jun 2009 02:40:19 -0000
|
vti_timelastmodified:TR|21 Nov 2009 03:58:11 -0000
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timecreated:TR|21 Jun 2009 02:40:19 -0000
|
vti_timecreated:TR|21 Jun 2009 02:40:19 -0000
|
||||||
vti_cacheddtm:TX|21 Jun 2009 02:40:19 -0000
|
vti_cacheddtm:TX|21 Jun 2009 02:40:19 -0000
|
||||||
vti_filesize:IR|2238
|
vti_filesize:IR|2238
|
||||||
vti_backlinkinfo:VX|
|
vti_backlinkinfo:VX|fceux.css
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 00:54:50 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 00:54:50 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 00:54:50 -0000
|
||||||
|
vti_filesize:IR|14754
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -1,10 +1,10 @@
|
||||||
vti_encoding:SR|utf8-nl
|
vti_encoding:SR|utf8-nl
|
||||||
vti_timelastmodified:TW|26 Sep 2009 04:19:50 -0000
|
vti_timelastmodified:TR|21 Nov 2009 18:44:34 -0000
|
||||||
vti_extenderversion:SR|12.0.0.4518
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
vti_author:SR|AD-PC\\Owner
|
vti_author:SR|AD-PC\\Owner
|
||||||
vti_modifiedby:SR|AD-PC\\Owner
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
vti_timecreated:TR|26 Sep 2009 02:57:30 -0000
|
vti_timecreated:TR|26 Sep 2009 02:57:30 -0000
|
||||||
vti_backlinkinfo:VX|home.html
|
vti_backlinkinfo:VX|home.html
|
||||||
vti_nexttolasttimemodified:TW|26 Sep 2009 04:19:50 -0000
|
vti_nexttolasttimemodified:TW|26 Sep 2009 04:19:50 -0000
|
||||||
vti_cacheddtm:TX|26 Sep 2009 04:19:50 -0000
|
vti_cacheddtm:TX|21 Nov 2009 18:44:34 -0000
|
||||||
vti_filesize:IR|5661
|
vti_filesize:IR|5661
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 01:13:23 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 01:13:23 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 01:13:23 -0000
|
||||||
|
vti_filesize:IR|13596
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 02:26:06 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 02:26:06 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 02:26:06 -0000
|
||||||
|
vti_filesize:IR|11694
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 01:20:43 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 01:20:43 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 01:20:43 -0000
|
||||||
|
vti_filesize:IR|7333
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 04:51:35 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 04:51:35 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 04:51:35 -0000
|
||||||
|
vti_filesize:IR|23541
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 14:00:45 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 14:00:45 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 14:00:45 -0000
|
||||||
|
vti_filesize:IR|15526
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 02:45:24 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 02:45:24 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 02:45:24 -0000
|
||||||
|
vti_filesize:IR|12527
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 14:18:09 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 14:18:09 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 14:18:09 -0000
|
||||||
|
vti_filesize:IR|19107
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 03:08:14 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 03:08:14 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 03:08:14 -0000
|
||||||
|
vti_filesize:IR|18502
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,9 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Nov 2009 03:44:32 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_author:SR|AD-PC\\Owner
|
||||||
|
vti_modifiedby:SR|AD-PC\\Owner
|
||||||
|
vti_timecreated:TR|21 Nov 2009 03:44:32 -0000
|
||||||
|
vti_cacheddtm:TX|21 Nov 2009 03:44:32 -0000
|
||||||
|
vti_filesize:IR|16093
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,6 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Jun 2009 02:40:23 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_cacheddtm:TX|21 Jun 2009 02:40:23 -0000
|
||||||
|
vti_filesize:IR|1917
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -0,0 +1,6 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|21 Jun 2009 02:40:23 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_cacheddtm:TX|21 Jun 2009 02:40:23 -0000
|
||||||
|
vti_filesize:IR|1547
|
||||||
|
vti_backlinkinfo:VX|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
||||||
<title>Untitled 1</title>
|
<title>Documentation</title>
|
||||||
<link href="fceux.css" rel="stylesheet" type="text/css" />
|
<link href="fceux.css" rel="stylesheet" type="text/css" />
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
||||||
<title>Untitled 1</title>
|
<title>Downloads</title>
|
||||||
<link href="fceux.css" rel="stylesheet" type="text/css" />
|
<link href="fceux.css" rel="stylesheet" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|
|
@ -23,29 +23,43 @@ body {
|
||||||
margin-left: 200px;
|
margin-left: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
|
||||||
clear: both;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.Font {
|
.Font {
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
background-color: #E9E9E9;
|
background-color: #E9E9E9;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
background-image:url('assests/ICON_1.ICO');
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: left;
|
||||||
background-color: #999999;
|
background-color: #999999;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
border-style: ridge;
|
border-style: ridge;
|
||||||
|
text-indent:40px;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
background-color: #B4B4B4;
|
background-color: #B4B4B4;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
margin: 1px;
|
border-top-width:4px;
|
||||||
border-style: ridge;
|
border-style: ridge;
|
||||||
|
padding-top: 16px;
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #999999;
|
||||||
|
border-width: 1px;
|
||||||
|
text-align: left;
|
||||||
|
background-color: #E1E1E1
|
||||||
}
|
}
|
||||||
li {
|
li {
|
||||||
background-color: #E9E9E9;
|
background-color: #E9E9E9;
|
||||||
padding-left: 14px;
|
padding-left: 1px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|30 Nov 2009 00:07:58 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_backlinkinfo:VX|fceux-2.0.2.htm
|
|
@ -0,0 +1,4 @@
|
||||||
|
vti_encoding:SR|utf8-nl
|
||||||
|
vti_timelastmodified:TR|30 Nov 2009 00:07:58 -0000
|
||||||
|
vti_extenderversion:SR|12.0.0.4518
|
||||||
|
vti_backlinkinfo:VX|fceux-2.0.2.htm
|
|
@ -40,7 +40,6 @@
|
||||||
<dd><li><a href="pressrelease-2.0.2.html">FCEUX 2.0.2</a> - 14 August 2008</li></dd>
|
<dd><li><a href="pressrelease-2.0.2.html">FCEUX 2.0.2</a> - 14 August 2008</li></dd>
|
||||||
<dd><li><a href="pressrelease-2.0.1.html">FCEUX 2.0.1</a> - 04 August 2008</li></dd>
|
<dd><li><a href="pressrelease-2.0.1.html">FCEUX 2.0.1</a> - 04 August 2008</li></dd>
|
||||||
<dd><li><a href="pressrelease-2.0.0.html">FCEUX 2.0.0</a> - 02 August 2008</li></dd>
|
<dd><li><a href="pressrelease-2.0.0.html">FCEUX 2.0.0</a> - 02 August 2008</li></dd>
|
||||||
<p>
|
|
||||||
<h2> FCE / FCE Ultra</h2>
|
<h2> FCE / FCE Ultra</h2>
|
||||||
<p>Bero originally wrote a Nintendo Entertainment System/Famicom
|
<p>Bero originally wrote a Nintendo Entertainment System/Famicom
|
||||||
emulator that was referred to as
|
emulator that was referred to as
|
||||||
|
@ -91,7 +90,7 @@
|
||||||
<p>In 2008, FCEU rerecording was picked up again by mz, maximus,
|
<p>In 2008, FCEU rerecording was picked up again by mz, maximus,
|
||||||
adelikat, and nitsujrehtona with various updates named FCEU.0.98.17 -
|
adelikat, and nitsujrehtona with various updates named FCEU.0.98.17 -
|
||||||
0.98.28</p>
|
0.98.28</p>
|
||||||
<p><a href="http://code.google.com/p/fceu/">FCEU.28 GoogleCode Page</a></p>
|
<p><dd><a href="http://code.google.com/p/fceu/">FCEU.28 GoogleCode Page</a></dd></p>
|
||||||
<h2>FCEUD/FCEUXD/FCEUXDSP/FCEUXDSP CE</h2>
|
<h2>FCEUD/FCEUXD/FCEUXDSP/FCEUXDSP CE</h2>
|
||||||
<h3>FCEUD</h3>
|
<h3>FCEUD</h3>
|
||||||
<p>In 2002, Parasyte modified the then-current version (0.81.3) of FCE Ultra and added a Nesten-style debugger, along with several other features, and named it "FCEUD" (FCE Ultra Debugger).</p>
|
<p>In 2002, Parasyte modified the then-current version (0.81.3) of FCE Ultra and added a Nesten-style debugger, along with several other features, and named it "FCEUD" (FCE Ultra Debugger).</p>
|
||||||
|
@ -111,21 +110,17 @@
|
||||||
and usability of debugging tools. </p>
|
and usability of debugging tools. </p>
|
||||||
<p>The last version of FCEUXDSP was 1.07 which adds a feature known as
|
<p>The last version of FCEUXDSP was 1.07 which adds a feature known as
|
||||||
the RAM Filter.</p>
|
the RAM Filter.</p>
|
||||||
<p>
|
<p><dd><a href="http://www.the-interweb.com/serendipity/index.php?/categories/9-FCEUXD-SP">FCEUXDSP homepage</a></dd></p>
|
||||||
<a href="http://www.the-interweb.com/serendipity/index.php?/categories/9-FCEUXD-SP">
|
|
||||||
FCEUXDSP homepage</a></p>
|
|
||||||
<h3>FCEUXDSP CE</h3>
|
<h3>FCEUXDSP CE</h3>
|
||||||
<p>CE stands for "Champion Edition" and is a branch of XDSP that adds a
|
<p>CE stands for "Champion Edition" and is a branch of XDSP that adds a
|
||||||
text hooker tool. The CE is a play on the excessive acronyms and branches in the FCEUD chain.</p>
|
text hooker tool. The CE is a play on the excessive acronyms and branches in the FCEUD chain.</p>
|
||||||
<p>
|
<p><dd><a class="style1" href="http://www.ximwix.net/boneyard/design19/xb/texthooker.htm">FCEUXDSP CE homepage</a></dd></p>
|
||||||
<a class="style1" href="http://www.ximwix.net/boneyard/design19/xb/texthooker.htm">
|
|
||||||
FCEUXDSP CE homepage</a></p>
|
|
||||||
<h3>FCEU-mm</h3>
|
<h3>FCEU-mm</h3>
|
||||||
<p>FCEU "mappers modified" is an unofficial build of FCEU Ultra by
|
<p>FCEU "mappers modified" is an unofficial build of FCEU Ultra by
|
||||||
CaH4e3, which supports a lot of new mappers including some obscure
|
CaH4e3, which supports a lot of new mappers including some obscure
|
||||||
mappers such as one for unlicensed NES ROM's.</p>
|
mappers such as one for unlicensed NES ROM's.</p>
|
||||||
<p>FCEUX supports mappers from older versions of FCEU-mm.</p>
|
<p>FCEUX supports mappers from older versions of FCEU-mm.</p>
|
||||||
<p><a class="style1" href="http://sourceforge.net/projects/fceumm/">
|
<p><dd><a class="style1" href="http://sourceforge.net/projects/fceumm/"></dd>
|
||||||
FCEU-mm SourceForge page</a></p>
|
FCEU-mm SourceForge page</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue