├── .gitignore ├── LICENSE.txt ├── README.md ├── package.json ├── screenshot.png └── src ├── app.d └── gbaid ├── audio.d ├── comm.d ├── gba ├── arm.d ├── assembly │ ├── add_with_flags_x64.s │ ├── line_background_affine_x64.s │ ├── line_background_text_x64.s │ ├── package.d │ └── sub_with_flags_x64.s ├── cpu.d ├── display.d ├── dma.d ├── gpio.d ├── halt.d ├── instable.d ├── interrupt.d ├── io.d ├── keypad.d ├── memory.d ├── package.d ├── register.d ├── rtc.d ├── sio.d ├── sound.d ├── system.d ├── thumb.d └── timer.d ├── input.d ├── render ├── gl.d ├── gl20.d ├── render.d └── shader.d ├── save.d └── util.d /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/app.d -------------------------------------------------------------------------------- /src/gbaid/audio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/audio.d -------------------------------------------------------------------------------- /src/gbaid/comm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/comm.d -------------------------------------------------------------------------------- /src/gbaid/gba/arm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/arm.d -------------------------------------------------------------------------------- /src/gbaid/gba/assembly/add_with_flags_x64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/assembly/add_with_flags_x64.s -------------------------------------------------------------------------------- /src/gbaid/gba/assembly/line_background_affine_x64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/assembly/line_background_affine_x64.s -------------------------------------------------------------------------------- /src/gbaid/gba/assembly/line_background_text_x64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/assembly/line_background_text_x64.s -------------------------------------------------------------------------------- /src/gbaid/gba/assembly/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/assembly/package.d -------------------------------------------------------------------------------- /src/gbaid/gba/assembly/sub_with_flags_x64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/assembly/sub_with_flags_x64.s -------------------------------------------------------------------------------- /src/gbaid/gba/cpu.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/cpu.d -------------------------------------------------------------------------------- /src/gbaid/gba/display.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/display.d -------------------------------------------------------------------------------- /src/gbaid/gba/dma.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/dma.d -------------------------------------------------------------------------------- /src/gbaid/gba/gpio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/gpio.d -------------------------------------------------------------------------------- /src/gbaid/gba/halt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/halt.d -------------------------------------------------------------------------------- /src/gbaid/gba/instable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/instable.d -------------------------------------------------------------------------------- /src/gbaid/gba/interrupt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/interrupt.d -------------------------------------------------------------------------------- /src/gbaid/gba/io.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/io.d -------------------------------------------------------------------------------- /src/gbaid/gba/keypad.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/keypad.d -------------------------------------------------------------------------------- /src/gbaid/gba/memory.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/memory.d -------------------------------------------------------------------------------- /src/gbaid/gba/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/package.d -------------------------------------------------------------------------------- /src/gbaid/gba/register.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/register.d -------------------------------------------------------------------------------- /src/gbaid/gba/rtc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/rtc.d -------------------------------------------------------------------------------- /src/gbaid/gba/sio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/sio.d -------------------------------------------------------------------------------- /src/gbaid/gba/sound.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/sound.d -------------------------------------------------------------------------------- /src/gbaid/gba/system.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/system.d -------------------------------------------------------------------------------- /src/gbaid/gba/thumb.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/thumb.d -------------------------------------------------------------------------------- /src/gbaid/gba/timer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/gba/timer.d -------------------------------------------------------------------------------- /src/gbaid/input.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/input.d -------------------------------------------------------------------------------- /src/gbaid/render/gl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/render/gl.d -------------------------------------------------------------------------------- /src/gbaid/render/gl20.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/render/gl20.d -------------------------------------------------------------------------------- /src/gbaid/render/render.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/render/render.d -------------------------------------------------------------------------------- /src/gbaid/render/shader.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/render/shader.d -------------------------------------------------------------------------------- /src/gbaid/save.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/save.d -------------------------------------------------------------------------------- /src/gbaid/util.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDoS/GBAiD/HEAD/src/gbaid/util.d --------------------------------------------------------------------------------