Files
linux-kernel-module-cheat/userland/arch/arm/gdb_tests/integer_registers.S
Ciro Santilli 六四事件 法轮功 12005528ef gdb: move all tests to userland
2019-05-26 00:00:01 +00:00

11 lines
176 B
ArmAsm

#include <lkmc.h>
LKMC_PROLOGUE
/* 1 + 2 == 3 */
mov r0, 1
/* test-gdb-op1 */
add r1, r0, 2
/* test-gdb-result */
LKMC_ASSERT_EQ(r1, =3)
LKMC_EPILOGUE