Skip to content

Commit cac4fbe

Browse files
committed
Added Audio Test and Tracks
1 parent 484a362 commit cac4fbe

File tree

10 files changed

+985
-27
lines changed

10 files changed

+985
-27
lines changed

CMakeLists.txt

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,21 @@ project(
1111
HOMEPAGE_URL "https://github.com/SimoSbara/ps1-benchmark"
1212
)
1313

14-
psn00bsdk_add_executable(bench GPREL main.c)
14+
file(GLOB _sources *.c)
15+
psn00bsdk_add_executable(bench GPREL ${_sources})
1516

1617
psn00bsdk_target_incbin(bench PRIVATE tilesc tilesc.tim)
1718

1819
psn00bsdk_add_cd_image(
1920
iso # Target name
2021
bench # Output file name (= bench.bin + bench.cue)
2122
iso.xml # Path to config file
22-
DEPENDS bench system.cnf
23+
DEPENDS bench system.cnf TRACK-1.vag TRACK-2.vag TRACK-3.vag TRACK-4.vag
2324
)
25+
26+
install(
27+
FILES
28+
${PROJECT_BINARY_DIR}/bench.bin
29+
${PROJECT_BINARY_DIR}/bench.cue
30+
TYPE BIN
31+
)

TRACK-1.vag

5.73 MB
Binary file not shown.

TRACK-2.vag

1.24 MB
Binary file not shown.

TRACK-3.vag

4.62 MB
Binary file not shown.

TRACK-4.vag

1.46 MB
Binary file not shown.

iso.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,14 @@
5959
contain any number of files.
6060
-->
6161
<directory_tree>
62-
<file name="SYSTEM.CNF" type="data" source="${PROJECT_SOURCE_DIR}/system.cnf" />
63-
<file name="BENCH.EXE" type="data" source="bench.exe" />
64-
<!--
65-
This file is only required if you are using dynamic linking
66-
(see the system/dynlink example). It contains the executable's
67-
symbol map and can be used to obtain the address of a function
68-
or global variable by its name.
69-
-->
70-
<!--<file name="TEMPLATE.MAP" type="data" source="template.map" />-->
62+
<file name="SYSTEM.CNF" type="data" source="${PROJECT_SOURCE_DIR}/system.cnf" />
63+
<file name="BENCH.EXE" type="data" source="bench.exe" />
64+
65+
<file name="TRACK-1.VAG" type="data" source="${PROJECT_SOURCE_DIR}/TRACK-1.vag" />
66+
67+
<file name="TRACK-2.VAG" type="data" source="${PROJECT_SOURCE_DIR}/TRACK-2.vag" />
68+
<file name="TRACK-3.VAG" type="data" source="${PROJECT_SOURCE_DIR}/TRACK-3.vag" />
69+
<file name="TRACK-4.VAG" type="data" source="${PROJECT_SOURCE_DIR}/TRACK-4.vag" />
7170

7271
<dummy sectors="1024"/>
7372
</directory_tree>

0 commit comments

Comments
 (0)