mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
10 lines
132 B
ArmAsm
10 lines
132 B
ArmAsm
/* Increment: i++. */
|
|
|
|
#include <lkmc.h>
|
|
|
|
LKMC_PROLOGUE
|
|
mov $2, %eax
|
|
inc %eax
|
|
LKMC_ASSERT_EQ_32(%eax, $3)
|
|
LKMC_EPILOGUE
|