• just_another_person@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    4 hours ago

    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
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      4 hours 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.