├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md └── src ├── NekoConstants.inc ├── NekoLib.inc ├── SNESRegisters.inc ├── init ├── SNESHeader.s ├── SNESInitialization.inc └── SNESInitialization.s ├── input ├── InputUtils.inc └── InputUtils.s ├── launcher ├── NekoLibLauncher.inc ├── NekoLibLauncher.s ├── NekoOpcodeTable.inc └── NekoOpcodeTable.s ├── macros └── NekoMacros.inc └── memory ├── MemoryUtils.inc └── MemoryUtils.s /.gitignore: -------------------------------------------------------------------------------- 1 | # Build results 2 | [Bb]uild/ 3 | [Oo]bj/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/README.md -------------------------------------------------------------------------------- /src/NekoConstants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/NekoConstants.inc -------------------------------------------------------------------------------- /src/NekoLib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/NekoLib.inc -------------------------------------------------------------------------------- /src/SNESRegisters.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/SNESRegisters.inc -------------------------------------------------------------------------------- /src/init/SNESHeader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/init/SNESHeader.s -------------------------------------------------------------------------------- /src/init/SNESInitialization.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/init/SNESInitialization.inc -------------------------------------------------------------------------------- /src/init/SNESInitialization.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/init/SNESInitialization.s -------------------------------------------------------------------------------- /src/input/InputUtils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/input/InputUtils.inc -------------------------------------------------------------------------------- /src/input/InputUtils.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/input/InputUtils.s -------------------------------------------------------------------------------- /src/launcher/NekoLibLauncher.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/launcher/NekoLibLauncher.inc -------------------------------------------------------------------------------- /src/launcher/NekoLibLauncher.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/launcher/NekoLibLauncher.s -------------------------------------------------------------------------------- /src/launcher/NekoOpcodeTable.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/launcher/NekoOpcodeTable.inc -------------------------------------------------------------------------------- /src/launcher/NekoOpcodeTable.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/launcher/NekoOpcodeTable.s -------------------------------------------------------------------------------- /src/macros/NekoMacros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/macros/NekoMacros.inc -------------------------------------------------------------------------------- /src/memory/MemoryUtils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/memory/MemoryUtils.inc -------------------------------------------------------------------------------- /src/memory/MemoryUtils.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgjz/neko/HEAD/src/memory/MemoryUtils.s --------------------------------------------------------------------------------