-
Updated
Dec 29, 2021 - C++
emulators
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 120 public repositories matching this topic...
-
Updated
Dec 27, 2021 - C
-
Updated
Dec 20, 2021 - Shell
Doxygen Comments referencing NetStructures should be changed to GameData
-
Updated
Sep 11, 2014 - C
-
Updated
Dec 27, 2021 - Shell
Overview
#22 added support for register-level read/writes, and introduced a new RegId associated type to the existing Registers trait. This associated type is used to translate raw GDB register ids (i.e: a arch-dependent usize) into a structured human-readable enum identifying the register.
e.g:
/// 32-bit ARM core register identifier.
#[derive(Debug, Clone, Copy)]
pub -
Updated
Oct 6, 2021 - Rust
-
Updated
Mar 31, 2016 - HTML
-
Updated
Dec 4, 2021 - C
-
Updated
Dec 20, 2020 - Makefile
-
Updated
Jun 29, 2021 - C++
-
Updated
Dec 28, 2021 - Shell
-
Updated
Dec 6, 2021 - C#
Allow modified patches to be exported as IPS patches. Modified means that some of the patch records are unchecked in the patch records view.
The emulator will open any given input file and attempt to run it as a Gameboy ROM. The cartridge header is not being checked at all.
The Cartridge header, as described here, is located from bytes 0x0100 to 0x014F and contains some game metadata. We need some code to validate this header, and also parse it neatly so that the metadat
-
Updated
Nov 25, 2021
-
Updated
Mar 10, 2021 - Java
-
Updated
Mar 19, 2020 - C++
- Wikipedia
- Wikipedia


I recently ported my emulator to use pixels, and it's great! I love the automatic scaling to the window size.
However, I would also like to allow my users to select a scaling factor that they prefer, regardless of window size. I tried passing my own values to
pixels.resize, but this doesn't do what I want.