What are some "easy to emulate" games ?

Discuss emulation of the Nintendo Entertainment System and Famicom.

Moderator: Moderators

Post Reply
amhndu
Posts: 9
Joined: Sun Jun 05, 2016 3:02 am

What are some "easy to emulate" games ?

Post by amhndu »

We have a list of "tricky to emulate" games in the wiki, and I've been looking for some test roms for my emulator, so what are some games/demos to try out in the initial stages of an emulator ?
Preferrably NROM.
lidnariq
Posts: 11430
Joined: Sun Apr 13, 2008 11:12 am

Re: What are some "easy to emulate" games ?

Post by lidnariq »

The earliest titles. e.g. Donkey Kong, the original Mario Bros, Popeye, Nuts & Milk, Lode Runner. As far as I know, all of these games can be rendered a screen at a time, not needing any cycle accuracy at all.

But do also look in cpow's collection of test roms.
amhndu
Posts: 9
Joined: Sun Jun 05, 2016 3:02 am

Re: What are some "easy to emulate" games ?

Post by amhndu »

Thanks, I'll test them.

Though, I'm actually rendering a pixel a cycle with no visible performance loss so far.
User avatar
Zepper
Formerly Fx3
Posts: 3262
Joined: Fri Nov 12, 2004 4:59 pm
Location: Brazil
Contact:

Re: What are some "easy to emulate" games ?

Post by Zepper »

Rockman 1 is another title. ^_^;;
User avatar
James
Posts: 431
Joined: Sat Jan 22, 2005 8:51 am
Location: Chicago, IL
Contact:

Re: What are some "easy to emulate" games ?

Post by James »

I used the Zelda Title Screen Simulator during the initial development of my emulator. The first game I got to run was Arkanoid.
get nemulator
http://nemulator.com
User avatar
Dwedit
Posts: 4922
Joined: Fri Nov 19, 2004 7:35 pm
Contact:

Re: What are some "easy to emulate" games ?

Post by Dwedit »

Also suggesting Mega Man and Mega Man II. No raster effects anywhere in those games. It's also a good opportunity to quickly implement a couple of common mappers.
Here come the fortune cookies! Here come the fortune cookies! They're wearing paper hats!
User avatar
koitsu
Posts: 4201
Joined: Sun Sep 19, 2004 9:28 pm
Location: A world gone mad

Re: What are some "easy to emulate" games ?

Post by koitsu »

First game we got running in VeNES was Mario Bros (the original, not SMB). Bunches of the original first-gen NROM games are good starters.
User avatar
thefox
Posts: 3134
Joined: Mon Jan 03, 2005 10:36 am
Location: 🇫🇮
Contact:

Re: What are some "easy to emulate" games ?

Post by thefox »

If you have any skills in NES programming (which is a good skill to have anyways if you're developing an emulator), you could write your own "easy to emulate" ROM or ROMs (with a limited set of CPU instructions and CPU/PPU interaction).
Download STREEMERZ for NES from fauxgame.com! — Some other stuff I've done: fo.aspekt.fi
User avatar
Myask
Posts: 965
Joined: Sat Jul 12, 2014 3:04 pm

Re: What are some "easy to emulate" games ?

Post by Myask »

thefox wrote:If you have any skills in NES programming (which is a good skill to have anyways if you're developing an emulator), you could write your own "easy to emulate" ROM or ROMs (with a limited set of CPU instructions and CPU/PPU interaction).
"if", because if not, then one will be testing against bad code, and fix things in the emulator to make the bad code run properly.

So don't do that.
User avatar
thefox
Posts: 3134
Joined: Mon Jan 03, 2005 10:36 am
Location: 🇫🇮
Contact:

Re: What are some "easy to emulate" games ?

Post by thefox »

Well, it's not that hard to get very basic things running, and of course you should test your ROM in other emulators/hardware first.
Download STREEMERZ for NES from fauxgame.com! — Some other stuff I've done: fo.aspekt.fi
Sik
Posts: 1589
Joined: Thu Aug 12, 2010 3:43 am

Re: What are some "easy to emulate" games ?

Post by Sik »

I would rule out anything that does any sort of split screen effect because of their need for relatively tight timings. This includes any game that scrolls horizontally but has a HUD that doesn't (a split is used between the HUD and the scenery). I know somebody who tried started with Pinball, and it did seem to start... except because the ball then would move erratically on the plunger. No idea how much of the CPU was emulated at the time, but truth is that most games just plain won't run until nearly all of the system is emulated.
thefox wrote:If you have any skills in NES programming (which is a good skill to have anyways if you're developing an emulator), you could write your own "easy to emulate" ROM or ROMs (with a limited set of CPU instructions and CPU/PPU interaction).
This is useful to start, but eventually you want to try games once you got enough =P

Also I'd say, if you want to make an emulator for any system, first you should have gotten accustomed to programming it, this way then you'll get a rough idea of how the hardware most likely works internally, otherwise you'll end up with a horrible mess that's 110% hacks that you'll need to rewrite away from scratch later because you made all the wrong assumptions =D
User avatar
rainwarrior
Posts: 8731
Joined: Sun Jan 22, 2012 12:03 pm
Location: Canada
Contact:

Re: What are some "easy to emulate" games ?

Post by rainwarrior »

thefox wrote:If you have any skills in NES programming (which is a good skill to have anyways if you're developing an emulator), you could write your own "easy to emulate" ROM or ROMs (with a limited set of CPU instructions and CPU/PPU interaction).
It seems to me that a lot of appropriate things of this nature have already been written. For example:
http://wiki.nesdev.com/w/index.php/Emulator_tests
Post Reply