Files
linux-kernel-module-cheat/userland/arch/x86_64/dec.S
Ciro Santilli 六四事件 法轮功 9fba97740c file_write_read.c: move from cpp-cheat
Improve README C section with example tree.
2019-06-07 00:00:03 +00:00

10 lines
129 B
ArmAsm

/* Decrement: i--. */
#include <lkmc.h>
LKMC_PROLOGUE
mov $3, %rax
dec %rax
LKMC_ASSERT_EQ(%rax, $2)
LKMC_EPILOGUE