Zack Buhman 863701941e scsp: add sound_cpu__midi_debug example
I don't think this is particularly useful (yet).
2024-02-02 08:58:53 +08:00

39 lines
798 B
Makefile

CFLAGS = -I../saturn -fstack-usage
OPT = -O3
LIBGCC = $(shell $(CC) -print-file-name=libgcc.a)
LIB = ../saturn
all:
include $(LIB)/m68k/common.mk
# 200 bytes
%-44100-s16be-1ch-100sample.pcm: Makefile
sox \
-r 44100 -e signed-integer -b 16 -c 1 -n -B \
$@.raw \
synth 101s $* 441 vol -10dB
mv $@.raw $@
# 88200 bytes
%-44100-s16be-1ch-1sec.pcm: Makefile
sox \
-r 44100 -e signed-integer -b 16 -c 1 -n -B \
$@.raw \
synth 1 sin 440 vol -10dB
mv $@.raw $@
%.pcm.o: %.pcm
$(BUILD_BINARY_O)
%.mid.o: %.mid
$(BUILD_BINARY_O)
slot.elf: slot.o sine-44100-s16be-1ch-1sec.pcm.o
interrupt.elf: interrupt.o jojo-11025-s16be-1ch.pcm.o
midi.elf: midi.o sine-44100-s16be-1ch-100sample.pcm.o midi_test-c-major-scale.mid.o f2.mid.o ../midi/parse.o $(LIBGCC)
midi_debug.elf: midi_debug.o