Natesh Narain

Results 27 issues of Natesh Narain

For easy project setup in CI

build

Maybe or may not be worth it. Mostly just for learning's sake. Opportunity to refactor as well.

enhancement

``` /home/travis/build/nnarain/gameboycore/src/gameboycore/src/cpu.cpp:64:20: warning: missing field 'hi' initializer [-Wmissing-field-initializers] : af_{0} ```

enhancement

Ability to set breakpoints in the debugger.

feature
tools

Pass audio rom tests.

testing

``` CMake Deprecation Warning at src/gameboycore/CMakeLists.txt:7 (cmake_policy): The OLD behavior for policy CMP0054 will be removed from a future version of CMake ```

build

At some points in the game, it starts to lag. Potentially related to speed mode switch?

gamebug

Probably something related to a dot-matrix... hm.

documentation
minor

``` union Register { struct { #ifdef __LITTLEENDIAN__ uint8_t lo; uint8_t hi; #else uint8_t hi; uint8_t lo; #endif }; uint16_t val; }; ``` Currently, registers are set up as above....

enhancement