Tricky-to-emulate games

From NESdev Wiki
Revision as of 07:57, 27 August 2017 by Rainwarrior (talk | contribs) ([open bus]])
Jump to navigationJump to search

At the very least the following games depend on hard-to-emulate or just obscure behavior:

  • Abarenbou Tengu and Captain Tsubasa 2 refer to CHR-ROM banks outside their size. On real hardware with CHR-ROM memories chips that have exact size, it does not matter as those PPU addresses are wrapped. So does most emulators. But if you are developing flash-cart that just pre-programs its flash/SRAM memory with the CHR-DATA without address wrapping, graphical bugs will happen. If you want to simulate that behaviour in emulator, increase CHR-ROM banks number in iNES header twice and paste zeros in the the CHR area
  • Adventures of Lolo 2, Ms. Pac-Man (Tengen), and Spelunker rely on 1 cycle NMI delay when PPUSTATUS ($2002) bit 7 gets set inside vblank (if $2002 has not been read yet), in which PPUSTATUS bit 7 can be read as true.
  • Balloon Fight relies on reading the nametables through PPUDATA ($2007) to twinkle the stars in the background. (The code is at $D603.) The scroll split in "Balloon Trip" also depends to an extent on the correct number of CPU cycles from the start of NMI to the start of display, but it's not particularly picky.
  • Bases Loaded II glitches after a pitch is thrown (screenshot) if writing $00 then $80 to PPUCTRL during vertical blank does not cause an additional NMI.
  • Battletoads requires fairly precise CPU and PPU timing (including the cycle penalty for crossing pages) and a fairly robust sprite zero implementation. It leaves rendering disabled for a number of scanlines into the visible frame to gain extra VRAM manipulation time and then enables it. If the timing is off so that the background image appears too high or too low at this point, a sprite zero hit will fail to trigger, hanging the game. This usually occurs immediately upon entering the first stage if the timing is off by enough, and might cause random hangs at other points otherwise.
  • Battletoads & Double Dragon reads from PRG-RAM region despite there being none on the cartridge[1]. The original cartridge relies on open bus behaviour, but if WRAM is present some pre-loaded values will cause the game to crash at the end of stage 1 when Abobo makes his first appearance.[2]
  • Bee 52 needs accurate DMC timing and relies on PPUSTATUS bit 5 (sprite overflow) as well
  • Bill & Ted's Excellent Adventure and a few other MMC1 games depend on the mapper ignoring successive writes; see iNES Mapper 001 (the talk page for that page might be informative too). Bill & Ted also turns off and re-enables rendering midframe to switch CHR banks (e.g. in the black border above dialog boxes).
  • Burai Fighter (U) accesses PPUDATA during rendering to draw the scorebar. Incorrect emulation clips the scorebar to half size. See the notes on accessing PPUDATA during rendering on the PPU scrolling page.
  • B-Wings writes to CHR ROM and expects the writes to have no effect. So do Krusty's Fun House and Trolls in Crazyland.[3]
  • Cobra Triangle and Ironsword: Wizards and Warriors II rely on the dummy read for the sta $4000,X instruction to acknowledge pending APU IRQs.
  • Crystalis, Fantastic Adventures of Dizzy, Fire Hawk, and Super Off Road do mid-frame palette changes.
  • Fire Hawk, Mig 29 Soviet Fighter, and Time Lord need accurate DMC timing because they abuse APU DMC IRQ to split the screen.
  • Galaxian requires proper handling of bit 4 of the P register for /IRQ.
  • G.I. Joe and Mickey in Letterland turn only sprite display off but correct timing of MMC3 IRQs requires that the sprite fetches still clock the scanline counter.[1]
  • Huge Insect depends on obscure OAMADDR ($2003) behavior; see PPU registers.
  • Low-G-Man reads from PRG-RAM despite there being no WRAM on the cartridge[4], causing a crash in the boss music code. The cartridge relies on [open bus]] behaviour but the original iNES format cannot specify a board without WRAM. (Pre-filling WRAM with $FF also solves the problem.)
  • The Magic of Scheherazade maps two non-contiguous PRG-ROM pages next to each other, then executes code across the page boundary. Emulators which use pointers to fetch sequential instruction bytes from ROM will fail when taking damage in the RPG-style battles. (Use password 5W to test this easily)
  • Marble Madness and Pirates switch CHR banks mid-scanline to draw text boxes (e.g. at the beginning of each level). Getting these to render correctly requires fairly precise timing.
  • Micro Machines requires correct values when reading OAMDATA ($2004) during rendering, and also relies on proper background color selection when rendering is disabled and the VRAM address points to the palette (see the "background palette hack" on the PPU palettes page).
  • Paperboy relies on the open bus behavior of controller reads and expects them to return exactly 0x40 or 0x41; see Standard controller.
  • Punch-Out!! requires fetching the 34th tile; otherwise, the ring will be glitched.
  • Puzznic and Reflect World (FDS) use unofficial opcode $89, which is a two-byte NOP on 6502 and BIT #imm on 65C02. (Puzznic tasvideos discussion) The instruction in Puzznic is 89 00; emulating $89 as a single-byte NOP will trigger a BRK that causes the screen to shake.
  • Slalom does a JSR while the stack pointer is 0, so that half of the return address ends up at $0100 and the other half at $01FF.
  • Super Mario Bros. is probably the hardest game to emulate among the most popular NROM games, which are generally the first targets against which an emulator author tests his or her work. It relies on JMP indirect, correct palette mirroring (otherwise the sky will be black; see PPU palettes), sprite 0 detection (otherwise the game will freeze on the title screen), the 1-byte delay when reading from CHR ROM through PPUDATA (see The PPUDATA read buffer), and proper behavior of the nametable selection bits of PPUSTATUS and PPUADDR. In addition, there are several bad dumps floating around, some of which were ripped from pirate multicarts whose cheat menus leave several key parameters in RAM. If you're looking for a good first game for your new emulator, try anything made in 1984 or earlier, such as Donkey Kong.
  • Super Mario Bros. 3, and RHDE: Furniture Fight rely on an interaction between the sprite priority bit and the OAM index to put sprites behind the background. SMB3 uses it for powerups sprouting from blocks, RHDE uses it for characters behind furniture.
  • Time Lord is sensitive to the power-on state of the NES. The Vblank flag in PPU Status must be set for the first time within 240 scanlines, otherwise there will be a frame IRQ which is never acknowledged, which will mess up the DMC IRQs used elsewhere and cause the game to crash.
  • Wizards and Warriors 3 writes new tile graphics for the sprites at the screen split after the sprites have been drawn, but before the frame has ended. Emulators which draw the sprites all at once using graphics data from the end of the frame will have glitches in the main character's sprite.
  • The Young Indiana Jones Chronicles accesses PPUDATA during rendering to perform a glitchy y scroll (to make the screen shake when cannon balls hit the ground). See the notes on accessing PPUDATA during rendering on PPU scrolling page.

Troubleshooting games

If a scroll split doesn't work, and a garbage sprite shows up around the intended split point, then the game is probably trying to use a sprite 0 hit, but either the wrong tile data is loaded or the background is scrolled to a position that doesn't overlap correctly. This could be a problem with nametable mirroring, with CHR bankswitching in mappers that support it, or with the CPU and PPU timing of whatever happened above the split. Battletoads, for one, uses 1-screen mirroring and requires exact timing to get the background scroll position dead-on.

See also

References

  1. thread: Battletoads Double Dragon Powerpak Freeze
  2. thread: Battletoads Double Dragon Powerpak Freeze - pre-loading $FF reliably causes crash, $00 reliably does not.
  3. thread: KrzysioCart - Home made cartridge that support>80% NES games
  4. thread: Battletoads Double Dragon Powerpak Freeze - similar problem with Low-G-Man