1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00

Reorganised slightly, and added my spc sample ripper + spc2it.

This commit is contained in:
2018-09-03 02:45:47 +10:00
parent 48dcc09399
commit 45ec9cf2cf
28 changed files with 6195 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 2.8)
project(spc2it)
set(spc2it_sources
emu.c
it.c
main.c
sound.c
spc700.c
emu.h
it.h
sneese_spc.h
sound.h
spc2ittypes.h
)
add_executable(spc2it ${spc2it_sources})
target_link_libraries(spc2it m)