Files
linux-kernel-module-cheat/userland/arch/aarch64/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 x0, 1
/* test-gdb-op1 */
add x1, x0, 2
/* test-gdb-result */
LKMC_ASSERT_EQ(x1, =3)
LKMC_EPILOGUE