Merge branch 'master' of https://github.com/Lauchmelder23/NESEmulator
This commit is contained in:
commit
097d57db7e
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
.vs/
|
.vs/
|
||||||
out/
|
out/
|
||||||
*.json
|
build/
|
||||||
|
*.json
|
||||||
|
|
|
@ -15,7 +15,7 @@ Byte pollInput(struct Controller* controller)
|
||||||
|
|
||||||
void fillRegister(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.A = keyboard[SDL_SCANCODE_A];
|
||||||
controller->data.B = keyboard[SDL_SCANCODE_S];
|
controller->data.B = keyboard[SDL_SCANCODE_S];
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
# NESEmulator
|
# NESEmulator [](https://github.com/Lauchmelder23/NESEmulator/actions/workflows/ci.yml)
|
||||||
A custom built NES emulator
|
|
||||||
|
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.
|
||||||
|
|
Loading…
Reference in a new issue