Program compatibility: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(→‎Severe Incompatibility: explanation for RTC Demo)
 
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
:''This page describes defects in homebrew games. For defects in games prior to 1996, see [[Game bugs]].''
:''This page describes defects in homebrew games. For defects in games prior to 1996, see [[Game bugs]].''


Homebrew development is as subject to bugs as old software was, but many suffer from additional compatibility problems with the NES hardware due to being tested on emulators exclusively. This page is an incomplete list of homebrew releases that have known bugs, or especially hardware compatibility problems.
Homebrew development is as subject to bugs as old software was, but many suffer from additional [[Accuracy|compatibility problems]] with the NES hardware due to being tested on emulators exclusively. It is often the case that early homebrew ROMs will not run correctly on hardware. Since the release of the [[PowerPak]] in 2008, and general improvement in emulators over time, these problems have become less frequent.


For a partial list of homebrew projects, see: [[Projects]]
For a partial list of homebrew projects, see: [[Projects]]


{| class="wikitable"
== Common compatibility problems ==
! Title
! Problem Description
|-
| [http://www.romhacking.net/trans/139/ Final Fantasy II (English translation, Neo Demiforce)]
| Version 1.02 and 1.03 — graphic glitches during intro, no text during prologue (blue screen without text).  Caused by incorrect setting of nametables in [[PPUCTRL]], misuse of [[PPUSCROLL]], and reading of [[PPUSTATUS]] to detect VBlank.  The issue [http://forums.nesdev.org/viewtopic.php?p=53111#p53111 was discussed in some detail]; the author has revamped the entire intro as of March 2015 (not yet released).
|-
| LAN Master by [https://shiru.untergrund.net/software.shtml Shiru]
| [[APU DMC]] causes byte deletions when reading back nametables from $2007 if a dialog is being displayed during a drum hit.
|}


== Severe Incompatibility ==
This is a list of issues that commonly appear due to lack of popular support in emulators, or sometimes even hardware limitations of flash-carts like the [[PowerPak]].
Many emulators are merely trying to be compatible with existing games, rather than accurately reflecting the hardware, making them inadequate for verifying the correctness of new software.


These games are unable to run at all on hardware.
* Use of DPCM samples causes a [[DPCM conflict|conflict]] with controller and PPU reads during sample playback.
 
* Writes to [[PPU registers]] outside of [[The frame and NMIs#VBlank, Rendering Time, and NMIs|VBlank]] with rendering enabled conflicts with internal use of the PPU address, causing graphical corruption.
{| class="wikitable"
* Failure to initialize registers not guaranteed by the [[CPU power up state]] or the [[PPU power up state]].
! Title
* Failure to initialize RAM, nametables, or [[mapper]] registers. (Few mappers have guaranteed power up states.)
! Problem Description
* Failure to delay use of the PPU after power/reset to avoid conflicts with its [[PPU power up state|warm up state]].
|-
| Dikki Painguin in: TKO for the Third Reich
|
|-
| Mouser
| Later revised by its original author.<ref>http://forums.nesdev.org/viewtopic.php?f=22&t=10594</ref>
|-
| RTC Demo
| Fails at the raster-bars portion because it incorrectly expects a sprite-0 hit on X=255.<ref>http://forums.nesdev.org/viewtopic.php?p=4965#p4965</ref>
|-
| Sack of Flour, Heart of gold
|
|}


== References ==
== References ==
<references />
<references />

Latest revision as of 17:57, 24 January 2023

This page describes defects in homebrew games. For defects in games prior to 1996, see Game bugs.

Homebrew development is as subject to bugs as old software was, but many suffer from additional compatibility problems with the NES hardware due to being tested on emulators exclusively. It is often the case that early homebrew ROMs will not run correctly on hardware. Since the release of the PowerPak in 2008, and general improvement in emulators over time, these problems have become less frequent.

For a partial list of homebrew projects, see: Projects

Common compatibility problems

This is a list of issues that commonly appear due to lack of popular support in emulators, or sometimes even hardware limitations of flash-carts like the PowerPak. Many emulators are merely trying to be compatible with existing games, rather than accurately reflecting the hardware, making them inadequate for verifying the correctness of new software.

  • Use of DPCM samples causes a conflict with controller and PPU reads during sample playback.
  • Writes to PPU registers outside of VBlank with rendering enabled conflicts with internal use of the PPU address, causing graphical corruption.
  • Failure to initialize registers not guaranteed by the CPU power up state or the PPU power up state.
  • Failure to initialize RAM, nametables, or mapper registers. (Few mappers have guaranteed power up states.)
  • Failure to delay use of the PPU after power/reset to avoid conflicts with its warm up state.

References