mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
11 lines
176 B
ArmAsm
11 lines
176 B
ArmAsm
#include <lkmc.h>
|
|
|
|
LKMC_PROLOGUE
|
|
/* 1 + 2 == 3 */
|
|
mov x0, 1
|
|
/* test-gdb-op1 */
|
|
add x1, x0, 2
|
|
/* test-gdb-result */
|
|
LKMC_ASSERT_EQ(x1, =3)
|
|
LKMC_EPILOGUE
|