Skip to content

Instantly share code, notes, and snippets.

@mgmarino
Created May 13, 2015 15:14
Show Gist options
  • Save mgmarino/148135d10787858320b2 to your computer and use it in GitHub Desktop.
Save mgmarino/148135d10787858320b2 to your computer and use it in GitHub Desktop.
// Grab a DMA device
TUVMEDevice* dev =
get_dma_device(address,// address to begin read
DL710_AddressMod, // address modifier
DL710_DataSize, // data size
false // no auto-increment, always read from address!
);
if (!dev) throw ...;
int32_t retVal = dev->Read((char*)pData, // buffer
(uint32_t)numOfBytes, // number of bytes to read
0x0 // offset, should generally be 0!
);
// Be sure to release it back.
release_dma_device();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment