diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-05-23 23:42:42 -0700 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-05-23 23:42:42 -0700 |
commit | 9e33979cee499191c05fa63262327f7f17a70305 (patch) | |
tree | 771a02d03f4a9b82b5a5ebe94b3df8cd12d6bba3 /blastem.h | |
parent | cd89c2bf86b59b7685c3ed92c613a14eb4240f84 (diff) |
Initial PSG support. Mostly works, noise channel is borked though.
Diffstat (limited to 'blastem.h')
-rw-r--r-- | blastem.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,7 @@ #include "z80_to_x86.h" #include "ym2612.h" #include "vdp.h" +#include "psg.h" typedef struct { uint32_t th_counter; @@ -24,6 +25,7 @@ typedef struct { z80_context *z80; vdp_context *vdp; ym2612_context *ym; + psg_context *psg; uint8_t *save_ram; uint32_t save_ram_mask; uint32_t save_flags; |