├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── TEST_RESULT ├── imgui.ini ├── no rom.sav ├── src ├── common │ ├── albion │ │ ├── audio.cpp │ │ ├── debug.cpp │ │ ├── emulator.cpp │ │ ├── fps.cpp │ │ ├── headers │ │ │ └── albion │ │ │ │ ├── audio.h │ │ │ │ ├── debug.h │ │ │ │ ├── destoer-emu.h │ │ │ │ ├── emulator.h │ │ │ │ ├── fps.h │ │ │ │ ├── input.h │ │ │ │ ├── lib.h │ │ │ │ ├── min_heap.h │ │ │ │ └── scheduler.h │ │ └── lib.cpp │ └── thirdparty │ │ └── stb │ │ ├── stb_image.h │ │ └── stb_image_write.h ├── frontend │ ├── destoer │ │ ├── destoer_window.cpp │ │ ├── destoer_window.h │ │ ├── font.h │ │ └── pal.h │ ├── imgui │ │ ├── gb_ui.cpp │ │ ├── gb_ui.h │ │ ├── gba_ui.cpp │ │ ├── gba_ui.h │ │ ├── imgui_context.cpp │ │ ├── imgui_window.cpp │ │ ├── imgui_window.h │ │ ├── n64_ui.cpp │ │ ├── n64_ui.h │ │ ├── texture.cpp │ │ ├── texture.h │ │ └── ui.cpp │ ├── input.cpp │ ├── input.h │ ├── playback.cpp │ ├── playback.h │ └── sdl │ │ ├── gb_window.cpp │ │ ├── gb_window.h │ │ ├── gba_window.cpp │ │ ├── gba_window.h │ │ ├── n64_window.cpp │ │ ├── n64_window.h │ │ ├── sdl_window.cpp │ │ └── sdl_window.h ├── gb │ ├── CMakeLists.txt │ ├── headers │ │ └── gb │ │ │ ├── apu.h │ │ │ ├── cpu.h │ │ │ ├── cpu.inl │ │ │ ├── debug.h │ │ │ ├── disass.h │ │ │ ├── forward_def.h │ │ │ ├── gb.h │ │ │ ├── mem_constants.h │ │ │ ├── memory.h │ │ │ ├── opcode_table.h │ │ │ ├── ppu.h │ │ │ ├── rom.h │ │ │ ├── scheduler.h │ │ │ └── sgb.h │ └── src │ │ ├── apu │ │ ├── apu.cpp │ │ └── apu_save_state.cpp │ │ ├── cpu │ │ ├── cpu.cpp │ │ ├── cpu_save_state.cpp │ │ ├── disass.cpp │ │ └── opcode.cpp │ │ ├── debug.cpp │ │ ├── gb.cpp │ │ ├── memory │ │ ├── banking.cpp │ │ ├── memory.cpp │ │ ├── memory_save_state.cpp │ │ └── rom.cpp │ │ ├── ppu │ │ ├── ppu.cpp │ │ ├── ppu_save_state.cpp │ │ ├── render.cpp │ │ └── viewer.cpp │ │ └── scheduler.cpp ├── gba │ ├── CMakeLists.txt │ ├── headers │ │ └── gba │ │ │ ├── apu.h │ │ │ ├── apu_io.h │ │ │ ├── arm.h │ │ │ ├── arm_disass.h │ │ │ ├── arm_lut.h │ │ │ ├── cpu.h │ │ │ ├── cpu.inl │ │ │ ├── cpu_io.h │ │ │ ├── debug.h │ │ │ ├── disass.h │ │ │ ├── disp_io.h │ │ │ ├── display.h │ │ │ ├── dma.h │ │ │ ├── flash.h │ │ │ ├── forward_def.h │ │ │ ├── gba.h │ │ │ ├── interrupt.h │ │ │ ├── mem_constants.h │ │ │ ├── mem_io.h │ │ │ ├── memory.h │ │ │ ├── scheduler.h │ │ │ └── thumb_lut.h │ └── src │ │ ├── apu │ │ └── apu.cpp │ │ ├── cpu │ │ ├── arm.cpp │ │ ├── arm_disass.cpp │ │ ├── arm_opcode.cpp │ │ ├── cpu.cpp │ │ ├── swi.cpp │ │ ├── thumb_disass.cpp │ │ └── thumb_opcode.cpp │ │ ├── debug.cpp │ │ ├── gba.cpp │ │ ├── memory │ │ ├── apu_io.cpp │ │ ├── cpu_io.cpp │ │ ├── disp_io.cpp │ │ ├── dma.cpp │ │ ├── flash.cpp │ │ ├── mem_io.cpp │ │ ├── memory.cpp │ │ └── waitstate.cpp │ │ ├── ppu │ │ ├── display.cpp │ │ ├── display_gfx.cpp │ │ ├── sprite.cpp │ │ └── viewer.cpp │ │ └── scheduler.cpp ├── generators │ ├── gen_arm_lut.cpp │ ├── gen_sm83_lut.cpp │ └── gen_thumb_lut.cpp ├── main.cpp ├── n64 │ ├── CMakeLists.txt │ ├── headers │ │ └── n64 │ │ │ ├── cpu.h │ │ │ ├── cpu │ │ │ ├── cop0.h │ │ │ ├── cop1.h │ │ │ ├── mips.h │ │ │ └── mips_lut.h │ │ │ ├── debug.h │ │ │ ├── forward_def.h │ │ │ ├── mem.h │ │ │ ├── mem │ │ │ ├── audio_interface.h │ │ │ ├── joybus.h │ │ │ ├── mem_constants.h │ │ │ ├── mips_interface.h │ │ │ ├── peripheral_interface.h │ │ │ ├── rdram_interface.h │ │ │ ├── serial_interface.h │ │ │ ├── sp_regs.h │ │ │ └── video_interface.h │ │ │ ├── n64.h │ │ │ ├── rdp.h │ │ │ └── scheduler.h │ └── src │ │ ├── cpu │ │ ├── cop0.cpp │ │ ├── cop1.cpp │ │ └── cpu.cpp │ │ ├── debug.cpp │ │ ├── instr │ │ ├── instr.cpp │ │ ├── instr_cop0.cpp │ │ ├── instr_cop1.cpp │ │ ├── instr_cop2.cpp │ │ ├── instr_float.cpp │ │ ├── instr_r.cpp │ │ ├── instr_regimm.cpp │ │ └── mips_lut.cpp │ │ ├── mem │ │ ├── audio_interface.cpp │ │ ├── joybus.cpp │ │ ├── layout.cpp │ │ ├── mem.cpp │ │ ├── mips_interface.cpp │ │ ├── peripheral_interface.cpp │ │ ├── pif.cpp │ │ ├── rdram.cpp │ │ ├── serial_interface.cpp │ │ ├── sp_regs.cpp │ │ └── video_interface.cpp │ │ ├── n64.cpp │ │ ├── rcp │ │ └── rdp.cpp │ │ └── scheduler.cpp ├── psg │ ├── CMakeLists.txt │ ├── headers │ │ └── psg │ │ │ └── psg.h │ └── src │ │ ├── channel.cpp │ │ ├── envelope.cpp │ │ ├── freq.cpp │ │ ├── noise.cpp │ │ ├── psg.cpp │ │ ├── square.cpp │ │ ├── sweep.cpp │ │ └── wave.cpp └── test.cpp └── thirdparty ├── glew.cmake ├── imgui.cmake ├── sdl2.cmake └── spdlog.cmake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/README.md -------------------------------------------------------------------------------- /TEST_RESULT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/TEST_RESULT -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/imgui.ini -------------------------------------------------------------------------------- /no rom.sav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/albion/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/audio.cpp -------------------------------------------------------------------------------- /src/common/albion/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/debug.cpp -------------------------------------------------------------------------------- /src/common/albion/emulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/emulator.cpp -------------------------------------------------------------------------------- /src/common/albion/fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/fps.cpp -------------------------------------------------------------------------------- /src/common/albion/headers/albion/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/audio.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/debug.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/destoer-emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/destoer-emu.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/emulator.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/fps.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/input.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/lib.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/min_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/min_heap.h -------------------------------------------------------------------------------- /src/common/albion/headers/albion/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/headers/albion/scheduler.h -------------------------------------------------------------------------------- /src/common/albion/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/albion/lib.cpp -------------------------------------------------------------------------------- /src/common/thirdparty/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/thirdparty/stb/stb_image.h -------------------------------------------------------------------------------- /src/common/thirdparty/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/common/thirdparty/stb/stb_image_write.h -------------------------------------------------------------------------------- /src/frontend/destoer/destoer_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/destoer/destoer_window.cpp -------------------------------------------------------------------------------- /src/frontend/destoer/destoer_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/destoer/destoer_window.h -------------------------------------------------------------------------------- /src/frontend/destoer/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/destoer/font.h -------------------------------------------------------------------------------- /src/frontend/destoer/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/destoer/pal.h -------------------------------------------------------------------------------- /src/frontend/imgui/gb_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/gb_ui.cpp -------------------------------------------------------------------------------- /src/frontend/imgui/gb_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/gb_ui.h -------------------------------------------------------------------------------- /src/frontend/imgui/gba_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/gba_ui.cpp -------------------------------------------------------------------------------- /src/frontend/imgui/gba_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/gba_ui.h -------------------------------------------------------------------------------- /src/frontend/imgui/imgui_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/imgui_context.cpp -------------------------------------------------------------------------------- /src/frontend/imgui/imgui_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/imgui_window.cpp -------------------------------------------------------------------------------- /src/frontend/imgui/imgui_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/imgui_window.h -------------------------------------------------------------------------------- /src/frontend/imgui/n64_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/n64_ui.cpp -------------------------------------------------------------------------------- /src/frontend/imgui/n64_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/n64_ui.h -------------------------------------------------------------------------------- /src/frontend/imgui/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/texture.cpp -------------------------------------------------------------------------------- /src/frontend/imgui/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/texture.h -------------------------------------------------------------------------------- /src/frontend/imgui/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/imgui/ui.cpp -------------------------------------------------------------------------------- /src/frontend/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/input.cpp -------------------------------------------------------------------------------- /src/frontend/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/input.h -------------------------------------------------------------------------------- /src/frontend/playback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/playback.cpp -------------------------------------------------------------------------------- /src/frontend/playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/playback.h -------------------------------------------------------------------------------- /src/frontend/sdl/gb_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/gb_window.cpp -------------------------------------------------------------------------------- /src/frontend/sdl/gb_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/gb_window.h -------------------------------------------------------------------------------- /src/frontend/sdl/gba_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/gba_window.cpp -------------------------------------------------------------------------------- /src/frontend/sdl/gba_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/gba_window.h -------------------------------------------------------------------------------- /src/frontend/sdl/n64_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/n64_window.cpp -------------------------------------------------------------------------------- /src/frontend/sdl/n64_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/n64_window.h -------------------------------------------------------------------------------- /src/frontend/sdl/sdl_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/sdl_window.cpp -------------------------------------------------------------------------------- /src/frontend/sdl/sdl_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/frontend/sdl/sdl_window.h -------------------------------------------------------------------------------- /src/gb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/CMakeLists.txt -------------------------------------------------------------------------------- /src/gb/headers/gb/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/apu.h -------------------------------------------------------------------------------- /src/gb/headers/gb/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/cpu.h -------------------------------------------------------------------------------- /src/gb/headers/gb/cpu.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/cpu.inl -------------------------------------------------------------------------------- /src/gb/headers/gb/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/debug.h -------------------------------------------------------------------------------- /src/gb/headers/gb/disass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/disass.h -------------------------------------------------------------------------------- /src/gb/headers/gb/forward_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/forward_def.h -------------------------------------------------------------------------------- /src/gb/headers/gb/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/gb.h -------------------------------------------------------------------------------- /src/gb/headers/gb/mem_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/mem_constants.h -------------------------------------------------------------------------------- /src/gb/headers/gb/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/memory.h -------------------------------------------------------------------------------- /src/gb/headers/gb/opcode_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/opcode_table.h -------------------------------------------------------------------------------- /src/gb/headers/gb/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/ppu.h -------------------------------------------------------------------------------- /src/gb/headers/gb/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/rom.h -------------------------------------------------------------------------------- /src/gb/headers/gb/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/scheduler.h -------------------------------------------------------------------------------- /src/gb/headers/gb/sgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/headers/gb/sgb.h -------------------------------------------------------------------------------- /src/gb/src/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/apu/apu.cpp -------------------------------------------------------------------------------- /src/gb/src/apu/apu_save_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/apu/apu_save_state.cpp -------------------------------------------------------------------------------- /src/gb/src/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/cpu/cpu.cpp -------------------------------------------------------------------------------- /src/gb/src/cpu/cpu_save_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/cpu/cpu_save_state.cpp -------------------------------------------------------------------------------- /src/gb/src/cpu/disass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/cpu/disass.cpp -------------------------------------------------------------------------------- /src/gb/src/cpu/opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/cpu/opcode.cpp -------------------------------------------------------------------------------- /src/gb/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/debug.cpp -------------------------------------------------------------------------------- /src/gb/src/gb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/gb.cpp -------------------------------------------------------------------------------- /src/gb/src/memory/banking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/memory/banking.cpp -------------------------------------------------------------------------------- /src/gb/src/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/memory/memory.cpp -------------------------------------------------------------------------------- /src/gb/src/memory/memory_save_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/memory/memory_save_state.cpp -------------------------------------------------------------------------------- /src/gb/src/memory/rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/memory/rom.cpp -------------------------------------------------------------------------------- /src/gb/src/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/ppu/ppu.cpp -------------------------------------------------------------------------------- /src/gb/src/ppu/ppu_save_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/ppu/ppu_save_state.cpp -------------------------------------------------------------------------------- /src/gb/src/ppu/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/ppu/render.cpp -------------------------------------------------------------------------------- /src/gb/src/ppu/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/ppu/viewer.cpp -------------------------------------------------------------------------------- /src/gb/src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gb/src/scheduler.cpp -------------------------------------------------------------------------------- /src/gba/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/CMakeLists.txt -------------------------------------------------------------------------------- /src/gba/headers/gba/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/apu.h -------------------------------------------------------------------------------- /src/gba/headers/gba/apu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/apu_io.h -------------------------------------------------------------------------------- /src/gba/headers/gba/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/arm.h -------------------------------------------------------------------------------- /src/gba/headers/gba/arm_disass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/arm_disass.h -------------------------------------------------------------------------------- /src/gba/headers/gba/arm_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/arm_lut.h -------------------------------------------------------------------------------- /src/gba/headers/gba/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/cpu.h -------------------------------------------------------------------------------- /src/gba/headers/gba/cpu.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/cpu.inl -------------------------------------------------------------------------------- /src/gba/headers/gba/cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/cpu_io.h -------------------------------------------------------------------------------- /src/gba/headers/gba/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/debug.h -------------------------------------------------------------------------------- /src/gba/headers/gba/disass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/disass.h -------------------------------------------------------------------------------- /src/gba/headers/gba/disp_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/disp_io.h -------------------------------------------------------------------------------- /src/gba/headers/gba/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/display.h -------------------------------------------------------------------------------- /src/gba/headers/gba/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/dma.h -------------------------------------------------------------------------------- /src/gba/headers/gba/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/flash.h -------------------------------------------------------------------------------- /src/gba/headers/gba/forward_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/forward_def.h -------------------------------------------------------------------------------- /src/gba/headers/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/gba.h -------------------------------------------------------------------------------- /src/gba/headers/gba/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/interrupt.h -------------------------------------------------------------------------------- /src/gba/headers/gba/mem_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/mem_constants.h -------------------------------------------------------------------------------- /src/gba/headers/gba/mem_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/mem_io.h -------------------------------------------------------------------------------- /src/gba/headers/gba/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/memory.h -------------------------------------------------------------------------------- /src/gba/headers/gba/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/scheduler.h -------------------------------------------------------------------------------- /src/gba/headers/gba/thumb_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/headers/gba/thumb_lut.h -------------------------------------------------------------------------------- /src/gba/src/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/apu/apu.cpp -------------------------------------------------------------------------------- /src/gba/src/cpu/arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/cpu/arm.cpp -------------------------------------------------------------------------------- /src/gba/src/cpu/arm_disass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/cpu/arm_disass.cpp -------------------------------------------------------------------------------- /src/gba/src/cpu/arm_opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/cpu/arm_opcode.cpp -------------------------------------------------------------------------------- /src/gba/src/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/cpu/cpu.cpp -------------------------------------------------------------------------------- /src/gba/src/cpu/swi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/cpu/swi.cpp -------------------------------------------------------------------------------- /src/gba/src/cpu/thumb_disass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/cpu/thumb_disass.cpp -------------------------------------------------------------------------------- /src/gba/src/cpu/thumb_opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/cpu/thumb_opcode.cpp -------------------------------------------------------------------------------- /src/gba/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/debug.cpp -------------------------------------------------------------------------------- /src/gba/src/gba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/gba.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/apu_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/apu_io.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/cpu_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/cpu_io.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/disp_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/disp_io.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/dma.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/flash.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/mem_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/mem_io.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/memory.cpp -------------------------------------------------------------------------------- /src/gba/src/memory/waitstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/memory/waitstate.cpp -------------------------------------------------------------------------------- /src/gba/src/ppu/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/ppu/display.cpp -------------------------------------------------------------------------------- /src/gba/src/ppu/display_gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/ppu/display_gfx.cpp -------------------------------------------------------------------------------- /src/gba/src/ppu/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/ppu/sprite.cpp -------------------------------------------------------------------------------- /src/gba/src/ppu/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/ppu/viewer.cpp -------------------------------------------------------------------------------- /src/gba/src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/gba/src/scheduler.cpp -------------------------------------------------------------------------------- /src/generators/gen_arm_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/generators/gen_arm_lut.cpp -------------------------------------------------------------------------------- /src/generators/gen_sm83_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/generators/gen_sm83_lut.cpp -------------------------------------------------------------------------------- /src/generators/gen_thumb_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/generators/gen_thumb_lut.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/n64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/CMakeLists.txt -------------------------------------------------------------------------------- /src/n64/headers/n64/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/cpu.h -------------------------------------------------------------------------------- /src/n64/headers/n64/cpu/cop0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/cpu/cop0.h -------------------------------------------------------------------------------- /src/n64/headers/n64/cpu/cop1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/cpu/cop1.h -------------------------------------------------------------------------------- /src/n64/headers/n64/cpu/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/cpu/mips.h -------------------------------------------------------------------------------- /src/n64/headers/n64/cpu/mips_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/cpu/mips_lut.h -------------------------------------------------------------------------------- /src/n64/headers/n64/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/debug.h -------------------------------------------------------------------------------- /src/n64/headers/n64/forward_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/forward_def.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/audio_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/audio_interface.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/joybus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/joybus.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/mem_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/mem_constants.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/mips_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/mips_interface.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/peripheral_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/peripheral_interface.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/rdram_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/rdram_interface.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/serial_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/serial_interface.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/sp_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/sp_regs.h -------------------------------------------------------------------------------- /src/n64/headers/n64/mem/video_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/mem/video_interface.h -------------------------------------------------------------------------------- /src/n64/headers/n64/n64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/n64.h -------------------------------------------------------------------------------- /src/n64/headers/n64/rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/rdp.h -------------------------------------------------------------------------------- /src/n64/headers/n64/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/headers/n64/scheduler.h -------------------------------------------------------------------------------- /src/n64/src/cpu/cop0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/cpu/cop0.cpp -------------------------------------------------------------------------------- /src/n64/src/cpu/cop1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/cpu/cop1.cpp -------------------------------------------------------------------------------- /src/n64/src/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/cpu/cpu.cpp -------------------------------------------------------------------------------- /src/n64/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/debug.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/instr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/instr.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/instr_cop0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/instr_cop0.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/instr_cop1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/instr_cop1.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/instr_cop2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/instr_cop2.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/instr_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/instr_float.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/instr_r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/instr_r.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/instr_regimm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/instr_regimm.cpp -------------------------------------------------------------------------------- /src/n64/src/instr/mips_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/instr/mips_lut.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/audio_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/audio_interface.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/joybus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/joybus.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/layout.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/mem.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/mips_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/mips_interface.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/peripheral_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/peripheral_interface.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/pif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/pif.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/rdram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/rdram.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/serial_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/serial_interface.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/sp_regs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/sp_regs.cpp -------------------------------------------------------------------------------- /src/n64/src/mem/video_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/mem/video_interface.cpp -------------------------------------------------------------------------------- /src/n64/src/n64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/n64.cpp -------------------------------------------------------------------------------- /src/n64/src/rcp/rdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/rcp/rdp.cpp -------------------------------------------------------------------------------- /src/n64/src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/n64/src/scheduler.cpp -------------------------------------------------------------------------------- /src/psg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/CMakeLists.txt -------------------------------------------------------------------------------- /src/psg/headers/psg/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/headers/psg/psg.h -------------------------------------------------------------------------------- /src/psg/src/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/channel.cpp -------------------------------------------------------------------------------- /src/psg/src/envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/envelope.cpp -------------------------------------------------------------------------------- /src/psg/src/freq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/freq.cpp -------------------------------------------------------------------------------- /src/psg/src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/noise.cpp -------------------------------------------------------------------------------- /src/psg/src/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/psg.cpp -------------------------------------------------------------------------------- /src/psg/src/square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/square.cpp -------------------------------------------------------------------------------- /src/psg/src/sweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/sweep.cpp -------------------------------------------------------------------------------- /src/psg/src/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/psg/src/wave.cpp -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/src/test.cpp -------------------------------------------------------------------------------- /thirdparty/glew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/thirdparty/glew.cmake -------------------------------------------------------------------------------- /thirdparty/imgui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/thirdparty/imgui.cmake -------------------------------------------------------------------------------- /thirdparty/sdl2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/thirdparty/sdl2.cmake -------------------------------------------------------------------------------- /thirdparty/spdlog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destoer-emu/albion/HEAD/thirdparty/spdlog.cmake --------------------------------------------------------------------------------