Initial commit: NES emulator with GTK4 desktop frontend
Some checks failed
CI / rust (push) Has been cancelled

Full NES emulation: CPU, PPU, APU, 47 mappers, iNES/NES 2.0 parsing.
GTK4 desktop client with HeaderBar, pixel-perfect Cairo rendering,
drag-and-drop ROM loading, and keyboard shortcuts.
187 tests covering core emulation, mappers, and runtime.
This commit is contained in:
2026-03-13 11:48:45 +03:00
commit bdf23de8db
143 changed files with 18501 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
[package]
name = "nesemu-adapter-headless"
version = "0.1.0"
edition = "2024"
description = "Headless/null adapter implementations for nesemu adapter API"
license = "MIT OR Apache-2.0"
rust-version = "1.85"
[dependencies]
nesemu-adapter-api = { path = "../nesemu-adapter-api" }