summaryrefslogtreecommitdiff
path: root/src/n64dd/n64dd_data_buffer.c
blob: 00a09a69b6155d0f9976a54afe8fa6f1ff00754a (plain)
1
2
3
4
5
6
7
8
#include "n64dd.h"

/**
 * Buffer used during the process of reading from the disk
 * Used to directly read individual blocks from the disk before copying to the final destination.
 * As blocks are read directly into this buffer from the disk, it should be 16-byte aligned.
 */
ALIGNED(16) u8 gN64DDDiskReadTemporaryBuffer[MAX_BLK_SIZE];