From 29643e060b7418137b11ff2e88c50c9468ee736a Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 31 Oct 2021 00:19:48 +0200 Subject: [PATCH 1/2] fixed gcc build warnings --- .gitignore | 3 ++- NES Emulator/controller.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a5c2d2d..2467a3c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .vs/ out/ -*.json \ No newline at end of file +build/ +*.json diff --git a/NES Emulator/controller.c b/NES Emulator/controller.c index 57e05b2..3a7e742 100644 --- a/NES Emulator/controller.c +++ b/NES Emulator/controller.c @@ -15,7 +15,7 @@ Byte pollInput(struct Controller* controller) void fillRegister(struct Controller* controller) { - Byte* keyboard = SDL_GetKeyboardState(NULL); + const Byte* keyboard = SDL_GetKeyboardState(NULL); controller->data.A = keyboard[SDL_SCANCODE_A]; controller->data.B = keyboard[SDL_SCANCODE_S]; From d97dc819e41b0a434c4959bfddbd3e8371c19c9b Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Sun, 31 Oct 2021 00:29:30 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d0323ec..3d57b2c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ -# NESEmulator -A custom built NES emulator +# NESEmulator [![CI](https://github.com/Lauchmelder23/NESEmulator/actions/workflows/ci.yml/badge.svg)](https://github.com/Lauchmelder23/NESEmulator/actions/workflows/ci.yml) + +A very basic, cross-platform implementation of a classic NES Emulator. + +I try to mimic the actual machines behaviour as closely as possible, striving for cycle accuracy as well as maintaining a lot of the quirks the original NES had.