emulator = perfection

This is an archive of a topic from NESdev BBS, taken in mid-October 2019 before a server upgrade.
View original topic
emulator = perfection
by on (#39169)
[Split from here -- MOD]

bsnes full-screen + decent gamepad + TV out = perfection. :)

by on (#39174)
BMF54123 wrote:
bsnes full-screen + decent gamepad + TV out = perfection. :)


Complete SNES + TV = perfection++ ;)

by on (#39180)
Fx3 wrote:
Complete SNES + TV = perfection++ ;)


qft.

by on (#39193)
Well, of course.

Perhaps I should have said "in the absence of a suitable cart for playing [x] game, bsnes + gamepad + TV-out = near perfection"... :P

by on (#39199)
Fx3 wrote:
BMF54123 wrote:
bsnes full-screen + decent gamepad + TV out = perfection. :)


Complete SNES + TV = perfection++ ;)


Code:
#include <assert.h>

int main() {
  bool perfection = true;
  assert(perfection == perfection++);
}


:D

Quote:
The most recent IOS I have is that one that "Poisoned" SSBB


Intriguing, yet Google fails me. More info, please?
Oh, and supposedly the new IOS thing was hacked now. Wouldn't know, not paying an eBay scalper $300 for a white Gamecube that Nintendo can't stock.

by on (#39203)
It's nice to throw a Flash Cart or GDSF7 in the mix too for some perfection. I much prefer to play SNES games on my Super Famicom with a RGB monitor than to play on an emulator. Not to say that emulators aren't good, but you can't beat the original hardware.

by on (#39204)
Yeah, aside from the obvious "can never achieve perfect accuracy" problem -- all emulators suffer from ~16-48ms video output latency, ~30-120ms audio output latency, and ~16-48ms controller input latency. Not to mention the forced resampling of audio if you want to avoid video tearing, and the unnatural video interpolation to preserve the aspect ratio.

While it's not really noticeable in isolation, you can definitely feel it side-by-side with the real system.

Who knows, maybe in 10 years we'll have FPGA-like devices that can run C++-like code, and we can create cheap, easy-to-produce hardware devices with no latency issues.

by on (#39220)
byuu wrote:
Who knows, maybe in 10 years we'll have FPGA-like devices that can run C++-like code, and we can create cheap, easy-to-produce hardware devices with no latency issues.


I think a fpga-based snes clone is already feasible nowadays.
Some time ago, I found this.
I contacted the guy thinking that he directly implemented the SNES hardware low-level style, but IIRC, he ported SNES9x to some CPU core running on the FPGA.
I could be confusing this with another project, though.

by on (#39221)
It seems far more common for people to port emulators to synthesized processor cores, than people actually designing the hardware. It is however very possible to fit a SNES into a modest FPGA (around 500k Xilinx gates) and even a Genesis/Neo Geo/CPS2 should fit in a slightly large one (probably closer to a million gates).

by on (#39249)
kyuusaku wrote:
It seems far more common for people to port emulators to synthesized processor cores, than people actually designing the hardware. It is however very possible to fit a SNES into a modest FPGA (around 500k Xilinx gates) and even a Genesis/Neo Geo/CPS2 should fit in a slightly large one (probably closer to a million gates).


A few years back I heard some guy had a bunch of pirated Nintendo Entertainment Systems. According to the rumor he went to prison.
I don't know if it was true,
But I remember some time in the 90's Some other guy was charged with piracy 'cause he was selling, giving away (I don't know) the complete schematics to the Famicom. I think he even had places to get the parts listed. I don't remember too much. If someone can help me out?

by on (#39273)
Making a game system on an FPGA always sounds like a fun project, but just doing the video hardware would be extremly hard :(

Also we already have have those Duo clone things for cheap, and you can't really sell something like that without someone starting an argument here

So basically the only reason to make one is because you can :)

I have a mint condition SNES I got from my granny, and a crappy TV with a built in VCR. The CRT and composite video is perfection :) Hence the flash cart to play games on it

by on (#39279)
ironfist61 wrote:
A few years back I heard some guy had a bunch of pirated Nintendo Entertainment Systems. According to the rumor he went to prison.
I don't know if it was true,
But I remember some time in the 90's Some other guy was charged with piracy 'cause he was selling, giving away (I don't know) the complete schematics to the Famicom. I think he even had places to get the parts listed. I don't remember too much. If someone can help me out?

That might have been reasonable until the mid-2000s, when the Famicom/NES patents expired.

by on (#39290)
Quote:
Making a game system on an FPGA always sounds like a fun project, but just doing the video hardware would be extremly hard


Everything about FPGA design is a pain. And even once you get good at it, it does no real good: nobody else is going to go through all that trouble to build their own.

My idea would be something of a hybrid between a PC and an FPGA. Give you multiple processors (so you don't have to use multi-tasking to simulate parallelism) with a high enough clock to divide down to rough estimates of standard 90's era systems.

Have a really, really light API to help control the hardware (video, audio, input -- connection interface details, eg memory card reader, HDMI, S/PDIF, controller ports -- are handled for you), with a focus on minimal latency. Drive the video and audio on per-pixel/sample clock rates ... get a certain memory address to hold the value you want, and make sure it's ready in time. Input polled from the controllers would also be done in real time. With a real-time OS, and known cycle overhead per operation, that shouldn't be too hard. Ideally, it'd be like blargg's S-DSP core: concrete "do this on this cycle" steps, and there'd be no need for things like semaphores or locks.

Worst case, buffer it a tiny bit if needed. Just nothing like to up to ~75ms video, ~120ms audio we get on PCs now.

Essentially like an open console, but with lower-level timing control. As if you're writing DSP firmware / microcode.

You just give out the program, people load it into the system (that's the key part -- so that anyone can use it, not just EEs), and it can act just like anything it emulates.

Better still if it's in a standardized language, so that the work won't be lost when a new generation of hardware comes out.

Quote:
I contacted the guy thinking that he directly implemented the SNES hardware low-level style, but IIRC, he ported SNES9x to some CPU core running on the FPGA.


While the former is technically more impressive, I don't see much of a practical difference once you're emulating the hardware anyway. So long as the timing is the same, it'd be ideal to write in a language that's easier to understand.

Quote:
That might have been reasonable until the mid-2000s, when the Famicom/NES patents expired.


The only one I remember reading about was the (albeit very successful until he was sued) idiot selling NES-on-a-chip N64-knockoff controllers with ~30 copyrighted NES ROMs on-board. He got sued because of the games included.

It would be interesting to try selling such a device with only a memory stick slot, so users can load games themselves.

by on (#39298)
byuu wrote:
Everything about FPGA design is a pain. And even once you get good at it, it does no real good: nobody else is going to go through all that trouble to build their own.

That's the beauty of HDLs, you can very easily port a SOC design from one system to another.

by on (#39481)
Fx3 wrote:
BMF54123 wrote:
bsnes full-screen + decent gamepad + TV out = perfection. :)


Complete SNES + TV = perfection++ ;)


In many cases, emulation is simply better. It's far more portable, saves an incredible amount of space, can do things like netplay, and using a mouse for super scope games is simply better than the unwieldy super scope itself. I grew up playing PC games, so crisp pixelated graphics look better to me than blur. And bsnes effectively has better audio than the original unit by avoiding the analog output. I don't want to hear any nonsense about developer intent in that regard. It's just a cheaper, inferior pathway in a day when digital ones were uncommon, that's all there is to it.

by on (#39539)
Hey now, the Super Scope was awesome. It was not unwieldy. It just takes too many damn batteries.

by on (#40102)
Who's been splitting these threads?
There's splits of splits and so on. It boggles my mind. (Boggle, I hate the game named that but that's what my brain feels like)

I've never seen any message boards or communities so "split happy". There's more "splits" then there are "Banana Splits" at "Dairy Queen"

by on (#40107)
FitzRoy wrote:
In many cases, emulation is simply better. It's far more portable, saves an incredible amount of space, can do things like netplay, and using a mouse for super scope games is simply better than the unwieldy super scope itself. I grew up playing PC games, so crisp pixelated graphics look better to me than blur. And bsnes effectively has better audio than the original unit by avoiding the analog output. I don't want to hear any nonsense about developer intent in that regard. It's just a cheaper, inferior pathway in a day when digital ones were uncommon, that's all there is to it.


Yes, you just forgot the word "fr33" about the games. :S

by on (#40109)
Fx3 wrote:
FitzRoy wrote:
In many cases, emulation is simply better. It's far more portable, saves an incredible amount of space, can do things like netplay, and using a mouse for super scope games is simply better than the unwieldy super scope itself. I grew up playing PC games, so crisp pixelated graphics look better to me than blur. And bsnes effectively has better audio than the original unit by avoiding the analog output. I don't want to hear any nonsense about developer intent in that regard. It's just a cheaper, inferior pathway in a day when digital ones were uncommon, that's all there is to it.


Yes, you just forgot the word "fr33" about the games. :S

Amen.



It also keeps licensed games alive. Screw the Wii's virtual console! Only thing that POS is good for is playing injected wads. Hell, the Wii's half gig storage sucks nuts anyway.


Edit: Speaking of which. Look at this BS I just found.
http://www.whattheyplay.com/blog/2008/0 ... GgodmVC6Yw
I found it just when I posted this