Coder Social home page Coder Social logo

team-imasara / binjnes Goto Github PK

View Code? Open in Web Editor NEW

This project forked from binji/binjnes

0.0 0.0 0.0 1.11 MB

NES emulator implemented in C, that also runs in the browser

Home Page: https://binji.github.io/binjnes/

License: MIT License

Python 2.57% C 48.39% SourcePawn 48.40% Makefile 0.15% CMake 0.49%

binjnes's Introduction

Github CI Status

binjnes

A simple NES emulator.

Features

  • Cycle accurate, passes many timing tests (see below)
  • Supports quite a few mappers
    • 0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 19, 21, 23, 24, 25, 26, 28, 30, 34, 66, 69, 71, 78, 85, 87, 206
    • Has built-in cart database
    • Supports additional audio channels for mapper 19, 24, 26
  • Save/load battery backup
  • Save/load emulator state to file
  • Pause and step one frame
  • Rewind and seek to specific cycle
  • Convenient Python test harness using hashes to validate

Cloning

Use a recursive clone, to include the submodules:

$ git clone --recursive https://github.com/binji/binjnes

If you've already cloned without initializing submodules, you can run this:

$ git submodule update --init

Building

Requires CMake and sokol.

Building (Linux/Mac)

If you run make, it will run CMake for you and put the output in the bin/ directory.

$ make
$ bin/binjnes foo.nes

You can also just use cmake directly:

$ mkdir build
$ cd build
$ cmake ..
$ make

Building WebAssembly

You can build binjnes as a WebAssembly module. You'll need an incoming build of emscripten. See https://github.com/kripken/emscripten/wiki/WebAssembly and http://kripken.github.io/emscripten-site/docs/building_from_source/index.html#installing-from-source.

Put a symlink to Emscripten in the emscripten directory, then run make.

$ ln -s ${PATH_TO_EMSCRIPTEN} emscripten
$ make wasm

Or set Makefile variables via command line:

$ make wasm EMSCRIPTEN_CMAKE="/path/to/Emscripten.cmake"

Changing the Build Configuration

If you change the build config (e.g. update the submodules), you may need to run CMake again. The simplest way to do this is to remove the out/ directory.

$ rm -rf out/
$ make

Running

$ bin/binjnes <filename>

Keys:

Action Key
P0 DPAD-UP
P0 DPAD-DOWN
P0 DPAD-LEFT
P0 DPAD-RIGHT
P0 B Z
P0 A X
P0 START Enter
P0 SELECT Tab
P1 DPAD-UP Y
P1 DPAD-DOWN H
P1 DPAD-LEFT G
P1 DPAD-RIGHT J
P1 B K
P1 A L
P1 START O
P1 SELECT I
Reset Delete
Save state F6
Load state F9
Rewind Backspace
Pause Space
Step one frame N

Running tests

scripts/tester.py will only run the tests that match a filter passed on the command line. Some examples:

# Run all tests
$ scripts/tester.py

# Run all apu tests
$ scripts/tester.py apu

Test status

See test results

binjnes's People

Contributors

binji avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.