blob: 16597f299b80d1fb6e7b7e69f479499c94b65251 (
plain)
1
2
3
4
5
6
7
8
|
/**
* @file
* Switch to User Mode and iret to function given by pointer
* provide the address of a void func() that will be called without
* any params via iret.
*/
void asm_usermode(uint32_t func);
|