this post was submitted on 10 Nov 2023
261 points (98.2% liked)

Gaming

19707 readers
584 users here now

Sub for any gaming related content!

Rules:

founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] asexualchangeling@lemmy.ml 0 points 10 months ago* (last edited 10 months ago) (1 children)

Emulation is from one architecture to another, translation layers like wine just translate windows instructions to linux, see also: every WIP ps4 "emulator" is just a translation layer, and doesn't have the over head that it would if it was your traditional emulator

[–] uis@lemmy.world 6 points 10 months ago* (last edited 10 months ago) (2 children)

This... Is not exactly how it works.

The way windows ABI works is syscalls always should go through dynamic libraries first, while on linux syscalls do syscall instruction/*. How windows syscalls work allows project like WINE just implement those libraries that will do linux syscalls. No instructions translated.

But with other architectures story is different. You either make instruction decoder for processor, make interpreter or make binary translator. First is itanium-way, second is naive way and third is how everyone does. Third is basically compiling one machine code to another. It has overhead of, well, compiling one machine code to another. And it works badly with other JIT compilers.

*there is vDSO, which is dynamic library, that implements syscalls like getting time. It is totally optional.

[–] asexualchangeling@lemmy.ml 1 points 10 months ago

As I said, I'm not expert, thanks for the info, I'll look that stuff up more when I have time

[–] frezik@midwest.social 1 points 10 months ago

One thing you can do is translate 3d APIs. This sometimes makes 3d consoles easier to emulate than 2d consoles. PS1 emulation was basically solved when SNES emulation was playable but still had noticeable bugs.