this post was submitted on 16 Oct 2024
59 points (96.8% liked)

RetroGaming

25194 readers
633 users here now

Vintage gaming community.

Rules:

  1. Be kind.
  2. No spam, AI slop, or soliciting for money.
  3. No racism or other bigotry allowed.
  4. Obviously nothing illegal.

If you see these please report them.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] just_another_person@lemmy.world 0 points 11 months ago (1 children)

Cycle accurate just means the FPGA runs the same cycles as the reference hardware of whatever it's programmed to be doing. In this case, an N64.

But the point of software emulation is to skip all of that noise and be more portable in the first place. The only real reason I can think to go with FPGA in this case is 1) to sidestep lawsuits, and 2) to possibly expand functionality in the future.

[–] misk@sopuli.xyz 2 points 11 months ago* (last edited 11 months ago)

It might seem like an overkill but cycle accurate emulation is in many ways easier, just way less performant. Back in the day devs wrote software in a way that would leverage different timings between different pieces of hardware to achieve things that wouldn’t be possible otherwise like full screen parallax scrolling on Gameboy. Software emulators have to identify those cases and implement workarounds for them. Some edge cases are unresolved for years leading to bugs of varying severity. You can see a rundown of such cases on Analogue Pocket in this video.