mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
13 lines
231 B
ArmAsm
13 lines
231 B
ArmAsm
/* https://cirosantilli.com/linux-kernel-module-cheat#x86-x87-fpu-instructions */
|
|
|
|
#include <lkmc.h>
|
|
|
|
.data
|
|
double_0_0: .double 0.0
|
|
LKMC_PROLOGUE
|
|
fldz
|
|
fldl double_0_0
|
|
fcomip %st(1)
|
|
LKMC_ASSERT(je)
|
|
LKMC_EPILOGUE
|