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,745 public repositories matching this topic...

gdkchan
gdkchan commented Jan 18, 2021

Feature Request

What feature are you suggesting?

Overview:

Currently, the range list implementation performs linear search on the FindOverlaps method. The purpose of this method is finding all ranges that overlaps with the range that is passed as argument. This can be improved with the use of interval trees, a data structure designed for fast insertion, removal and lookup of int

xenia
Triang3l
Triang3l commented Feb 11, 2021

The operator * of utf8::iterator reads the code point at the location the iterator points to by calling utf8::next, which parses the UTF-8 encoding by iterating the underlying octet iterator from the leading to the last byte in the encoding.

However, when utf8::iterator is using a reverse_iterator as an octet iterator (like in the utf8_criter case in Xenia), the next function will

PyBoy
MineRobber9000
MineRobber9000 commented Mar 22, 2020

A program can tell that it's running on PyBoy because the buttons always change right at vblank.

To reproduce:

  1. Install PyBoy
  2. Start the test ROM "Telling LYs?" (which I have precompiled for your convenience here)
  3. Press all 8 buttons in any order
  4. Watch the arrow sprite at the right side

Expect: Arrow moves after each press, followed

Wikipedia
Wikipedia