mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-11 12:05:09 -05:00
12 lines
251 B
C
12 lines
251 B
C
|
#include "global.h"
|
||
|
|
||
|
void osViSetMode(OSViMode* mode) {
|
||
|
register u32 prevInt = __osDisableInt();
|
||
|
|
||
|
__osViNext->modep = mode;
|
||
|
__osViNext->state = 1;
|
||
|
__osViNext->features = __osViNext->modep->comRegs.ctrl;
|
||
|
|
||
|
__osRestoreInt(prevInt);
|
||
|
}
|