KallistiOS
##version##
|
Macros | |
#define | TOC_LBA(n) ((n) & 0x00ffffff) |
Get the FAD address of a TOC entry. More... | |
#define | TOC_ADR(n) ( ((n) & 0x0f000000) >> 24 ) |
Get the address of a TOC entry. More... | |
#define | TOC_CTRL(n) ( ((n) & 0xf0000000) >> 28 ) |
Get the control data of a TOC entry. More... | |
#define | TOC_TRACK(n) ( ((n) & 0x00ff0000) >> 16 ) |
Get the track number of a TOC entry. More... | |
#define TOC_ADR | ( | n | ) | ( ((n) & 0x0f000000) >> 24 ) |
Get the address of a TOC entry.
n | The entry from the TOC to look at. |
#define TOC_CTRL | ( | n | ) | ( ((n) & 0xf0000000) >> 28 ) |
Get the control data of a TOC entry.
n | The entry from the TOC to look at. |
#define TOC_LBA | ( | n | ) | ((n) & 0x00ffffff) |
Get the FAD address of a TOC entry.
n | The actual entry from the TOC to look at. |
#define TOC_TRACK | ( | n | ) | ( ((n) & 0x00ff0000) >> 16 ) |
Get the track number of a TOC entry.
n | The entry from the TOC to look at. |