Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion iop/sound/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ SUBDIRS = \
libspu2 \
ps2snd \
rspu2drv \
sdrdrv
sdhd \
sdrdrv \
sdsq

include $(PS2SDKSRC)/Defs.make
include $(PS2SDKSRC)/Rules.make
20 changes: 20 additions & 0 deletions iop/sound/sdhd/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# _____ ___ ____ ___ ____
# ____| | ____| | | |____|
# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
#-----------------------------------------------------------------------
# Copyright ps2dev - http://www.ps2dev.org
# Licenced under Academic Free License version 2.0
# Review ps2sdk README & LICENSE files for further details.

IOP_BIN ?= sdhd.irx

IOP_IMPORT_INCS += \
system/intrman \
system/loadcore

IOP_OBJS = sdhd.o exports.o imports.o

include $(PS2SDKSRC)/Defs.make
include $(PS2SDKSRC)/iop/Rules.bin.make
include $(PS2SDKSRC)/iop/Rules.make
include $(PS2SDKSRC)/iop/Rules.release
15 changes: 15 additions & 0 deletions iop/sound/sdhd/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Sound data (HD file) access library

This module provides functions to access sound banks stored in HD files.

## Configurations

There are multiple configurations of this library, allowing the choice of
balancing between size, speed, and features.

* `sdhd` -> The recommended version.

## How to use this module in your program

In order to use this module in your program, use `LoadModule` or \
`LoadModuleBuffer` with no arguments.
Loading