Table of Contents:
Why is FCE Ultra one of the slower emulators?Unlike some emulators, FCE Ultra is predominantly written in C for the purpose of portability, but this shouldn’t affect performance on modern computers these days. Some accuracy can only be achieved by taking more CPU time.
FCE Ultra should be able to at run full speed with sound disabled on a Pentium 2 300MHz machine, or an “equivalent” processor. Older versions of the emulator have been run on Pentium MMX 200MHz machines. gcc has a history of producing executables that seem to perform poorly on AMD Athlon processors, so it may be beneficial to download the source code and compile with CPU-specific optimization flags.
FCE Ultra will perform fastest on older systems (or systems with limited video acceleration) when using an 8BPP video mode. 16BPP video modes come next in terms of speed, followed by 32BPP, and lastly 24BPP. Avoid 24BPP video modes if at all possible.
In MS Windows, while FCE Ultra is in windowed mode, it will perform best with a “desktop” bit-depth setting of 16BPP, as expected.
Why do some games make a popping sound (Rad Racer 2, Final Fantasy 3)?These games do a very crude drum imitation by causing a large jump in the output level for a short period of time via the register at $4011. The analog filters on a real Famicom make it sound decent/better.
These filters have not been completed in the code.
Why don’t some NSF rips work correctly on FCE Ultra?Some NSF rips are bad. Some read from addresses that are not specified in the NSF specifications, expecting certain values to be returned. Others execute undocumented instructions that have no effect on less-accurate software NSF players, but will cause problems on NSF players that emulate these instructions. Also, the playback rate specified in the NSF header is currently ignored, as it is inherently inaccurate.
Some NSF rips neglect to write to $4017, which can cause notes to terminate too quickly and add other similar effects. Many Konami NSF rips are affected by this.
Why don’t some games work correctly on FCE Ultra?Many factors can make a game not work on FCE Ultra:
- If the ROM image is in the iNES format (typically files with the extension '.nes'), its header may be incorrect. This incorrectness may also be because of garbage in the header. Certain utilities used to put text in the reserved bytes of the iNES header, then those reserved bytes were later assigned functions. FCE Ultra recognizes and automatically removes (in loaded memory) some header junk.
If the game has graphical errors while scrolling, chances are the mirroring is set incorrectly in the header.
You can try to edit the header with a utility (such as uCON64) or a hex editor.
- The on-cart hardware the game uses may not be emulated correctly.
- Limitations of the ROM image format may prevent a game from being emulated correctly without special code to recognize that game. This occurs quite often with many Koei MMC5 (iNES mapper 5) and MMC1 (iNES mapper 1) games in the iNES format. FCE Ultra identifies and emulates some of these games based on a calculated checksum.
- The ROM image may be encrypted. The author of SMYNES seems to have done this intentionally to block other emulators from playing “SMYNES only” games.
Why does Super Mario Bros. start off on level 0?This happens if you’re using a hacked copy of the Super Mario Bros. ROM image. The hacked version is reading from uninitialized RAM, apparently to get the starting level number. This bad copy of SMB was likely extracted from a bootleg multicart, which would have had a menu run before the game started, initializing RAM and setting the starting level.
Why does my hack/translation not work correctly?If a hack or translation that you made does not work on FCE Ultra, when the original game does, FCE Ultra may be applying header correction based on CRC32 value. These changes are only made to the game loaded in RAM.
To see what changes have been made, go to “Message Log” on GUI ports. On command-line ports, the information is printed to stdout when the game is loaded. You can then update your hack/translation with the corrected header information.