1
0
ответвлено от xt-sys/exectos
Этот коммит содержится в:
2023-02-05 00:30:12 +01:00
родитель 5eaf7d63a3
Коммит c6cadbd655
3 изменённых файлов: 29 добавлений и 0 удалений

Просмотреть файл

@@ -141,6 +141,25 @@ ArLoadInterruptDescriptorTable(IN PVOID Source)
: "memory");
}
/**
* Loads the value in the source operand into the MXCSR register
*
* @param Source
* Supplies a source value to be loaded into the MXCSR register.
*
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTCDECL
VOID
ArLoadMxcsrRegister(IN ULONG Source)
{
asm volatile("ldmxcsr %0"
:
: "m" (Source));
}
/**
* Loads source data into specified segment.
*