byuu's message board

For discussion of projects related to www.byuu.org/


Previous  1 ... 10, 11, 12, 13, 14, 15, 16 ... 27  Next
emulator efficiency 
Author Message
User avatar

Joined: Wed 08 Sep 2010, 17:05:03

Posts: 133
Post Re: emulator efficiency
Quote:
I have had some basic programming attempts, have some experience with LOGO/BASIC/C++ and have a general idea. I've used computers for some time.

I get that the process of emulating is to have an appropriate algorithm to calculate the ROM numbers for the same results as the SNES.
(I get LLE, HLE, Dynamic Recompiler and the concept)
I get that all opcodes read in the ROM must have a formula to relate.
Thanks.


From this text seems that he really is a begginer in programming, and now he's starting to understand what a processor and emulator are.

Probably some years from now he'll laugh at himself for such an epic topic.

Thu 29 May 2014, 03:50:55
User avatar

Joined: Fri 10 Apr 2009, 20:54:19

Posts: 2679
Post Re: emulator efficiency
CaptainJistuce wrote:
Kawa wrote:
kode54 wrote:
Where can you see lions?
Only in Kenya!

I am going to hunt you down and kill you.

But I totally did that on purpose. I also sing that song out loud whenever I have or even glance at my Kenyan AA coffee K-Cups.

_________________
blag

Thu 29 May 2014, 03:52:42

Joined: Wed 09 Feb 2011, 13:29:34

Posts: 425
Post Re: emulator efficiency
The Doug wrote:
Quote:
I have had some basic programming attempts, have some experience with LOGO/BASIC/C++ and have a general idea. I've used computers for some time.

I get that the process of emulating is to have an appropriate algorithm to calculate the ROM numbers for the same results as the SNES.
(I get LLE, HLE, Dynamic Recompiler and the concept)
I get that all opcodes read in the ROM must have a formula to relate.
Thanks.


From this text seems that he really is a begginer in programming, and now he's starting to understand what a processor and emulator are.

Probably some years from now he'll laugh at himself for such an epic topic.


We all begin somewhere, driven by ideas bigger than us, and I like the passion the guy puts into it. Grasping the basics is usually the longer step, but the most crucial too.

Thu 29 May 2014, 09:39:53
User avatar

Joined: Sat 05 Feb 2011, 02:10:54

Posts: 174
Post Re: emulator efficiency
Grapeshot wrote:
Maybe this guy should go talk to losethos? They seem to have a certain ethos in common.

Huh.

_________________
vgm2mp3 - uses blargg's Game_Music_Emu.
I can't the cores, but I can quite a punch.
Screwtape: I have no regrets about financially supporting the cause of Internet Drama.

Thu 29 May 2014, 18:56:39

Joined: Fri 26 Oct 2012, 14:47:06

Posts: 81
Post Re: emulator efficiency
As long as each opcode has its own function to represent and is ordered in the appropriate systematic step-by-step approach that would be done on the SNES with an algorithm, including virtual buffers for what the SNES hardware would use, the result is some calculations to get what the output strings going to video/sound/temp would be and the rest is faked pauses to keep in sync - one burst of calculations to get numbers of each 'frame' or other expected calculation in the appropriate steps and the rest is just to output/sync.
This can be finetuned to suit steps done by other architecture.

Anyway, thanks for the post about sync (which is considered in an algorithm where each step should be appropriate to those done by SNES and its opcode steps to match the 1:1 scheduled list - for being specific for archival purposes following traces can assist in developing the representation and formula).

Thu 29 May 2014, 20:34:19
User avatar

Joined: Sun 05 Sep 2010, 15:42:48

Posts: 1344
Post Re: emulator efficiency
Code:
<hunterk> lol SoraK05 totally just described bsnes in his/her most recent post
<hunterk> or any snes emu, really

_________________
http://helmet.kafuka.org

Thu 29 May 2014, 20:38:13
User avatar

Joined: Mon 20 Apr 2009, 08:11:50

Posts: 5266
Location: 日本
Post Re: emulator efficiency
Gold. Absolute gold.

_________________
CaptainJistuce: He's totally in the wrong, Kakashi's 100% in the right.
Note: The above statement is subject to act of byuu.

Fri 30 May 2014, 03:13:58

Joined: Fri 26 Oct 2012, 14:47:06

Posts: 81
Post Re: emulator efficiency
The point is to do the math in one go, and then sync things like outputting video/sound. A block of calculations based on formulas for each opcode in the step-by-step manner which the SNES would in general would be able to accomplish doing a chunk of calculations and then having numbers ready for output in a synced manner.

A specific formula for each opcode and having them operate step-by-step should give the right compatibility - something by design in the algorithm which should cater for calculating any ROM appropriately, and having the focus on doing the calculations in a chunk and syncing appropriately for a thing like output is not something 'all emulators do' and is a means to getting those numbers appropriately.
Tweaking the steps to suit opcodes available on x86 hardware and doing a block with syncing in mind for input/output will be functional and have compatibility suitable to the console.

The point of the thread is about the efficiency, and where each opcode is written appropriately for its steps there should be compatibility suitable to the console for a ROM, and each should function step-by-step as the SNES does. With syncing in mind for interaction of input and output (like fps), the calculations can be done in a go for the respective numbers, and any outputting when met will be treated as going to the PC monitor/speaker for example.

Clearly not every emulator does it, and this has the calculations in the shortest steps in mind to get the right numbers and parameters for syncing / global buffer.
An accurate emu which gets matching output numbers for a ROM with syncing/buffering in its algorithm does not mean high requirements. The right data is retrieved and output more appropriately than emus in general on VC and it can handle its games at full speed - OOT runs on GC.

Anyways, thanks.

Fri 30 May 2014, 04:46:31
User avatar

Joined: Fri 10 Apr 2009, 20:54:19

Posts: 2679
Post Re: emulator efficiency
I'm sorry. No modern desktop computer is powerful enough to parallelize a circuit level simulation of such a complex piece of hardware. At least, not anywhere near real time.

For reference, there is Visual 6502, a circuit level simulation of the 6502, capable of acting as the core of the NES. On my Core i5 3570K, it can simulate a 326Hz processor. Consider that the original Apple II+ had a 6502 clocked at 1MHz. That's one 3067th the speed right there. For circuit level simulation in software.

There's also more recently (a few years, perhaps) a Visual 2C02. On this same system, it gets 171.3Hz, which is one 125394th of the speed of the NES master clock fed to the chip. Circuit simulation in software.

Now, I know you suggested something massively parallel. Indeed, circuit level simulation would greatly benefit from all of those virtual transistors being run in parallel to each other instead of in a serial fashion.

You know what we do to run so many transistors in parallel in a software fabricated device? We program an FPGA. That's Field Programmable Gate Array. That's right, you can take a FPGA device, program it to simulate a circuit completely using software circuit designs, in the field. Of course, this isn't usually as flexible as loadable computer software, and is usually fixed to one process. However, most modern FPGAs are now reprogrammable, which allows their circuits to be redesigned. Again, still not quite the same as computer software.

With FPGA, you're not emulating or simulating the original function of the device with a series of operations, performed end to end. Instead, you are simulating the original circuitry at the electrical level, with all specialized operations hopefully running in the correct lockstep fashion as the original pre-fabricated components. FPGA is usually the next best thing compared to having your own silicon fabrication operation.

Two different things. Computers today aren't really parallel enough to simulate circuits efficiently, and FPGAs aren't really powerful enough yet to replace densely populated pre-fabricated processors with established instruction sets. Maybe one day, this gap will be bridged.

Wait, did I just fall for a troll topic?

_________________
blag

Fri 30 May 2014, 05:21:34

Joined: Wed 06 May 2009, 04:13:19

Posts: 4543
Post Re: emulator efficiency
SoraK05 wrote:
The point of the thread is about the efficiency, and where each opcode is written appropriately for its steps there should be compatibility suitable to the console for a ROM, and each should function step-by-step as the SNES does. With syncing in mind for interaction of input and output (like fps), the calculations can be done in a go for the respective numbers, and any outputting when met will be treated as going to the PC monitor/speaker for example.

Clearly not every emulator does it, and this has the calculations in the shortest steps in mind to get the right numbers and parameters for syncing / global buffer.
An accurate emu which gets matching output numbers for a ROM with syncing/buffering in its algorithm does not mean high requirements.

Accuracy DOES require high system requirements, as more accuracy is more code running every step.

Quote:
The right data is retrieved and output more appropriately than emus in general on VC and it can handle its games at full speed - OOT runs on GC.

Anyways, thanks.

The Virtual Console emulators ARE NOT ACCURATE.
Ocarina of Time on GameCube, if it is emulation and not a port, is not accurate N64 emulation.
Both are just accurate enough to run the games they are fed without glaring audiovisual errors.

I don't know how else to put this. Just because a carefully-selected handful of games appear to run right at a casual investigation DOES NOT MEAN THE EMULATOR IS ACCURATE.

In fact, there are known and documented gameplay differences between the N64 and GameCube and Virtual Console versions of Zelda 64. All three versions behave differently. That is documentation of emulation inaccuracy right there, so STOP USING IT as an example.

_________________
This post best viewed at 800x600
;write ! ! !

Fri 30 May 2014, 09:08:08
User avatar

Joined: Thu 22 Mar 2012, 04:37:56

Posts: 502
Post Re: emulator efficiency
Can confirm that the GC OoT emulator doesn't even run the japanese n64 version of animal crossing properly, which is supposed to be vaguely based on the zelda 64 engine.

Fri 30 May 2014, 09:21:20
User avatar

Joined: Sun 05 Sep 2010, 15:42:48

Posts: 1344
Post Re: emulator efficiency
SoraK05 wrote:
The point of the thread is about the efficiency
We've pretty much reached the upper bound on efficiency.

We can go faster if we do certain parts high-level, such as the various DSP chips available to the SNES, but then we'd risk getting things wrong -- blatantly or otherwise. Doing them low-level reduces such risks significantly. For example, SNES Pilotwings uses the DSP1. The DSP1 has multiple revisions, but they all basically have the same functions. If you high-level emulate the DSP1 (ZSNES, Snes9x...) you run these functions by your own code, and hope you observed things right. If you low-level emulate it (bsnes/higan), that is not catching the function calls and running your own code but actually running a separate processor with a fixed program (loaded from ROM like the game is), as long as you emulate the processor right you will get the right results. If you've read this, say banana. And in Pilotwings, suddenly a fun little error occurs: on one revision of the DSP1, the player's movements will be off and cause a death-by-impact at one point in the demo loop while another revision gives slightly different results and the player's movements are just a little better and nothing happens.

Better example? Mega Man X2. Its extension chip is used to do 3D transformations, vector animations, and a bunch of other things. HLE, it did these things and did them passably well. When they did the LLE emulation for that chip, it turned out that it didn't have its own program ROM -- the game ROM contained that, and it was Mega Man X2 itself that determined its extension chip would do vector animation and all that. So even though MMX2/3 ran perfectly well in ZSNES (haw haw!) it didn't actually do so in a nearly accurate way. If a third game with that same chip were to appear, and use it do to something else entirely, it wouldn't work on HLE and hilarity ensues.

_________________
http://helmet.kafuka.org

Fri 30 May 2014, 09:26:36

Joined: Fri 10 Apr 2009, 15:00:08

Posts: 13668
Post Re: emulator efficiency

Fri 30 May 2014, 09:56:00

Joined: Wed 06 May 2009, 04:13:19

Posts: 4543
Post Re: emulator efficiency
Banana.

_________________
This post best viewed at 800x600
;write ! ! !

Fri 30 May 2014, 10:02:36

Joined: Fri 10 Apr 2009, 15:00:08

Posts: 13668
Post Re: emulator efficiency
If you read this, send $5000 to my Paypal account.

Fri 30 May 2014, 10:04:00
Previous  1 ... 10, 11, 12, 13, 14, 15, 16 ... 27  Next

Who is online

Users browsing this forum: No registered users and 0 guests

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum