Failures in Graphics

This is an archive of a topic from NESdev BBS, taken in mid-October 2019 before a server upgrade.
View original topic
Failures in Graphics
by on (#111740)
I'm at the very beginning of writing an emulator, and so far my program just shows some graphics with neither sprites nor scrolling. Some NROM-games seem to be correct, but the intro screen to Ice Climber doesn't show up (neither is the attribute table filled), but the attraction mode seems to work. The title of Macross is glitched. Perhaps someone knows what's wrong?
Re: Failures in Graphics
by on (#111742)
Does the Macross title screen incorporate sprites?
Re: Failures in Graphics
by on (#111743)
KW_455 wrote:
I'm at the very beginning of writing an emulator, and so far my program just shows some graphics with neither sprites nor scrolling. Some NROM-games seem to be correct, but the intro screen to Ice Climber doesn't show up (neither is the attribute table filled), but the attraction mode seems to work. The title of Macross is glitched. Perhaps someone knows what's wrong?

The images to the far right look strangely familiar...like they are code/data logger visuals. :)
Re: Failures in Graphics
by on (#111753)
It looks like for Macross they ran out of space for nametable tiles, so some of the title screen is done with sprite tiles instead, so what you've got is actually correct.
Re: Failures in Graphics
by on (#111757)
rainwarrior: The title screen literally littered with sprites - at a quick glance, it didn't look to me as it was "advanced enough" to merit the inclusion of them; thank you for pointing me in the right direction.

cpow: You are correct :) My main focus for writing this emulator is to elucidate what makes NES games tick.