Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
11–20 of 47 posts
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#12this makes me think of full brain emulation. how far are we from an in silico silicon virtualization suite?
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#13This might be a lot easier on an FPGA.
It is. I did a Sega system on an FPGA in 2003 as a one-semester senior design project. Using a modern HDL (bluespec, or something like the proprietary language my company uses internally) on current FPGAs, you could probably do a much higher level implementation in 1/10th that time. An SNES would be much more annoying to do, but probably no more than an order of magnitude moreso, so I doubt it would take more than a…
The article was about achieving extremely high compatibility by emulating hardware quirks. What advantage would an FPGA be? Easier synchronization?
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#14Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#15I've been follow Byuu's progress on BSNES for a couple of years, and I would like to state for the record that the amount of effort he had put into this project far exceeds the majority of "hobby" projects. Just in the past few months, several SNES co-process chips that remained un-emulated for years, have been deciphered and fully emulated in BSNES. Without Byuu leading the charge into the last bastions of SNES emul…
Have you heard of anyone from Nintendo getting involved (in a positive or negative way) with Byuu's project (or maybe they already offer one via the Wii--not sure)?
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#16Very interesting. I never thought about this even though I've recognized the differences between games. I just attributed it to better game software, but it could literally have been better hardware available to certain games. You can't do that with CD/DVD/downloadable games.
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#17I wonder if such accuracy is necessary for emulating newer systems. I don't think my PS3 games are updating the graphics hardware mid-scanline. If modern systems have more relaxed timing requirements, then a much simpler binary translation may be enough. You no longer have to model the hardware, just the abstraction layer that the game itself is written against.
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#18I've been follow Byuu's progress on BSNES for a couple of years, and I would like to state for the record that the amount of effort he had put into this project far exceeds the majority of "hobby" projects. Just in the past few months, several SNES co-process chips that remained un-emulated for years, have been deciphered and fully emulated in BSNES. Without Byuu leading the charge into the last bastions of SNES emul…
You would think that the OEM's are leaving a fair amount of money on the table by not offering a true software emulator. Have you heard of anyone from Nintendo getting involved (in a positive or negative way) with Byuu's project (or maybe they already offer one via the Wii--not sure)?
Unless my knowledge is out of date, Nintendo's business model revolves around licensing for publishing software for their hardware, so it's in Nintendo's best interest to sell hardware, and not to support emulation on other hardware.
On a related note, when Sony sued 'Bleem!', it argued that running the software on other hardware destroyed Sony's control over the player's experience, and as a result hurt their brand.
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#19Earlier quoted context omitted.
It is. I did a Sega system on an FPGA in 2003 as a one-semester senior design project. Using a modern HDL (bluespec, or something like the proprietary language my company uses internally) on current FPGAs, you could probably do a much higher level implementation in 1/10th that time. An SNES would be much more annoying to do, but probably no more than an order of magnitude moreso, so I doubt it would take more than a…
> I did a Sega system on an FPGA in 2003 as a one-semester senior design project. The article was about achieving extremely high compatibility by emulating hardware quirks. What advantage would an FPGA be? Easier synchronization?
FPGAs make this a complete non-issue. Of course, FPGAs bring in a whole host of issues when you want to make such a thing practical. One thing I've been considering for a long time is a super high-level HDL specifically for emulation like this, which can either be run on the CPU (slowly), synthesized for FPGAs, or burned into an ASIC. You could have a whole catalog of components and put them together just like building a real console.
Re: Accuracy takes power: one man's 3GHz quest to build a perfect SNES emulator
#20I wonder if such accuracy is necessary for emulating newer systems. I don't think my PS3 games are updating the graphics hardware mid-scanline. If modern systems have more relaxed timing requirements, then a much simpler binary translation may be enough. You no longer have to model the hardware, just the abstraction layer that the game itself is written against.
The one place where you may end up emulating something with precise timing is the audio processor; the Gamecube and Wii for instance used a custom DSP that had to be emulated fairly precisely, after the instruction set was revere-engineered.