mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
10 lines
130 B
ArmAsm
10 lines
130 B
ArmAsm
/* Subtraction. */
|
|
|
|
#include <lkmc.h>
|
|
|
|
LKMC_PROLOGUE
|
|
mov $3, %rax
|
|
sub $2, %rax
|
|
LKMC_ASSERT_EQ(%rax, $1)
|
|
LKMC_EPILOGUE
|