mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
adding ym2413
squashed commits: YM2413追加中 一通り実装したけどポートへの書き込み方が不明でまだ音が出ない 細かい修正(未テスト) resetで初期化されるのをなんとかしたい sound 初期化と終了を追加してみた SN76496を参考にYM2413のアップデート方法を変更してみた stereoフラグをアップデートサイズに変更 処理順番を整理したら音が出た stateセーブに対応してみた addition: Support for the Japanese Mark-III extended FM sound source unit
This commit is contained in:
parent
7980d47767
commit
a2f24bfa7b
17 changed files with 221 additions and 56 deletions
|
@ -38,6 +38,7 @@ void PicoInit(void)
|
|||
PicoInitMCD();
|
||||
PicoSVPInit();
|
||||
Pico32xInit();
|
||||
PsndInit();
|
||||
|
||||
PicoDrawInit();
|
||||
PicoDraw2Init();
|
||||
|
@ -50,6 +51,7 @@ void PicoExit(void)
|
|||
PicoExitMCD();
|
||||
PicoCartUnload();
|
||||
z80_exit();
|
||||
PsndExit();
|
||||
|
||||
free(Pico.sv.data);
|
||||
Pico.sv.data = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue