Epok Engine

PSYQO SDK

psyqo::Kernel::enableDma

Function · 1 overload

Function

Enables the given DMA channel.

Belongs to
psyqo::Kernel
Header
kernel.hh
Overloads
1

Declaration

Declaration
void enableDma(DMA channel, unsigned priority = 7)

Enables the given DMA channel.

ParameterTypeMeaning
channelDMAthe DMA channel to enable.
priorityunsigned intthe priority of the channel.

Returns: Nothing (void).

Example

C++ example
#include "psyqo/kernel.hh"

// Assume these named values have been initialized with valid data:
// DMA channel
// unsigned int priority

psyqo::Kernel::enableDma(channel, priority);

Why use it

It provides direct, allocation-conscious access to PSX kernel ownership, interrupts and low-level services. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in https://github.com/pcsx-redux/nugget/blob/6186b131aacc5853a9161fb076ed34ffe504552d/psyqo/kernel.hh:277

Related members