This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/loader/source/memory.h

15 lines
432 B
C
Raw Normal View History

2016-05-03 03:05:11 +02:00
#pragma once
#include "types.h"
void memcpy(void *dest, const void *src, u32 size);
/***
Cleans and invalidates the data cache, then waits for all memory transfers to be finished.
This function MUST be called before doing the following:
- rebooting
- powering down
- setting the ARM11 entrypoint to execute a function
- jumping to a payload (?)
***/
void cleanInvalidateDCacheAndDMB(void);