Skip to content
#

Emulator

Emulators allow the host system to emulate the qualities of a client system. For example, a mobile application developer might run an emulated device on their PC in order to test how their application would perform and appear on an actual phone or tablet.

Here are 2,518 public repositories matching this topic...

PyBoy
DavidSteinhart
DavidSteinhart commented Jun 3, 2020

I tried saving and loading a state, but the resulting images differ. Mario shows a different animation frame. Might be related to #99

from pyboy.utils import WindowEvent
import pyboy as pyboy
import numpy as np
import io

# Load Super Mario Land and progress to start of game
boy = pyboy.PyBoy('SuperMarioLand1.gb')
boy.set_emulation_speed(0)
for i in range(100):
      boy.tick()
EliEron
EliEron commented Dec 9, 2020

Bug Report

What's the issue you encountered?

An NSO header contains a number of sections that specifies various sizes (TextSize, RoSize, BssSize , etc) which are stored as unsigned integers, a negative size does not make much sense after all.

Despite this Ryujinx's NSO Executable parser casts the sections to INT (See NsoExecutable.cs and other related files) this causes an integer

Wikipedia
Wikipedia
You can’t perform that action at this time.