├── .gitignore ├── LICENSE ├── README.md ├── domain-model ├── SnesApu.cpp ├── SnesApu.h ├── snes-apu-c │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── snes_apu_c.h ├── main.cpp ├── resources ├── application.qrc └── style.qss ├── snes-apu-dbg.pro └── views ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── OutputViewer.cpp ├── OutputViewer.h ├── OutputViewer.ui ├── RamViewer.cpp ├── RamViewer.h ├── RamViewer.ui ├── VoiceOutputViewer.cpp ├── VoiceOutputViewer.h ├── VoiceOutputViewer.ui ├── VoiceViewer.cpp ├── VoiceViewer.h └── VoiceViewer.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/README.md -------------------------------------------------------------------------------- /domain-model/SnesApu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/domain-model/SnesApu.cpp -------------------------------------------------------------------------------- /domain-model/SnesApu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/domain-model/SnesApu.h -------------------------------------------------------------------------------- /domain-model/snes-apu-c/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/domain-model/snes-apu-c/Cargo.toml -------------------------------------------------------------------------------- /domain-model/snes-apu-c/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/domain-model/snes-apu-c/src/lib.rs -------------------------------------------------------------------------------- /domain-model/snes_apu_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/domain-model/snes_apu_c.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/main.cpp -------------------------------------------------------------------------------- /resources/application.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/resources/application.qrc -------------------------------------------------------------------------------- /resources/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/resources/style.qss -------------------------------------------------------------------------------- /snes-apu-dbg.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/snes-apu-dbg.pro -------------------------------------------------------------------------------- /views/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/MainWindow.cpp -------------------------------------------------------------------------------- /views/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/MainWindow.h -------------------------------------------------------------------------------- /views/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/MainWindow.ui -------------------------------------------------------------------------------- /views/OutputViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/OutputViewer.cpp -------------------------------------------------------------------------------- /views/OutputViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/OutputViewer.h -------------------------------------------------------------------------------- /views/OutputViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/OutputViewer.ui -------------------------------------------------------------------------------- /views/RamViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/RamViewer.cpp -------------------------------------------------------------------------------- /views/RamViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/RamViewer.h -------------------------------------------------------------------------------- /views/RamViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/RamViewer.ui -------------------------------------------------------------------------------- /views/VoiceOutputViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/VoiceOutputViewer.cpp -------------------------------------------------------------------------------- /views/VoiceOutputViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/VoiceOutputViewer.h -------------------------------------------------------------------------------- /views/VoiceOutputViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/VoiceOutputViewer.ui -------------------------------------------------------------------------------- /views/VoiceViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/VoiceViewer.cpp -------------------------------------------------------------------------------- /views/VoiceViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/VoiceViewer.h -------------------------------------------------------------------------------- /views/VoiceViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupferris/snes-apu-dbg/HEAD/views/VoiceViewer.ui --------------------------------------------------------------------------------