Skip to content

Commit f83e1b2

Browse files
author
vampirefrog
committed
fmtoy: rework code, add support for YM2608, YM2610, YM2610B and YM2612
1 parent 0c64a8f commit f83e1b2

20 files changed

+888
-519
lines changed

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ insdump_SRCS=insdump.c tools.c ins_file.c md5.c
1616
dmpdump_SRCS=dmpdump.c tools.c dmp_file.c md5.c
1717
tfidump_SRCS=tfidump.c tools.c tfi_file.c md5.c
1818
y12dump_SRCS=y12dump.c tools.c y12_file.c md5.c
19-
fmtoy_jack_SRCS=fmtoy_jack.c fmtoy.c cmdline.c tools.c opm_file.c tfi_file.c ins_file.c y12_file.c dmp_file.c chips/ym2151.c chips/fm.c chips/ymdeltat.c chips/2203intf.c chips/2608intf.c chips/2610intf.c chips/2612intf.c chips/emu2149.c chips/fm2612.c
19+
fmtoy_jack_SRCS=fmtoy_jack.c fmtoy.c cmdline.c tools.c \
20+
opm_file.c tfi_file.c ins_file.c y12_file.c dmp_file.c \
21+
chips/ym2151.c chips/fm.c chips/fm2612.c chips/ymdeltat.c \
22+
fmtoy_ym2151.c fmtoy_ym2203.c fmtoy_ym2608.c fmtoy_ym2610.c fmtoy_ym2610b.c fmtoy_ym2612.c
2023
fmtoy_jack_LIBS=$(shell pkg-config alsa jack --libs)
2124

2225
OBJS=$(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(foreach prog,$(PROGS),$(prog).cpp $($(prog)_SRCS))))

0 commit comments

Comments
 (0)