Program compatibility: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(Commercial homebrew is a reality. Reworded hatnote.)
 
(36 intermediate revisions by 4 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]].''


Many older programs that are passed off as NES programs were tested exclusively with older, less accurate emulators, and do not work on a Nintendo Entertainment System.
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.


== Compatible Programs ==
For a partial list of homebrew projects, see: [[Projects]]
:''See also: [[Projects]]''
*[[BoxBoy]]
*[[Hot Seat Harry]]
*[[Munchie Attack]]
*[[Years Behind]]


As the [[PowerPak]] became more widespread, it became easier for programmers to test a daily build on an NES.
== Common compatibility problems ==
Games developed in the PowerPak era include
*[[LJ65]]
*[[Battle Kid]] series


== Almost Compatible Programs ==
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.
! Title
! Problem Description
! Screenshots
|-
| [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 [[PPU_registers|$2000]], misuse of [[PPU_registers|$2005]], and reading of [[PPU_registers|$2002]] to detect VBLANK.  [http://nesdev.parodius.com/bbs/viewtopic.php?p=53111#53111]
|
|}


== Incompatible Programs ==
* Use of DPCM samples causes a [[DPCM conflict|conflict]] with controller and PPU reads during sample playback.
*[[Dikki Painguin in: TKO for the Third Reich]]
* 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.
*[[Mouser]]
* Failure to initialize registers not guaranteed by the [[CPU power up state]] or the [[PPU power up state]].
*[[RTC Demo]]
* Failure to initialize RAM, nametables, or [[mapper]] registers. (Few mappers have guaranteed power up states.)
*[[Sack of Flour, Heart of gold]]
* Failure to delay use of the PPU after power/reset to avoid conflicts with its [[PPU power up state|warm up state]].
 
== 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