mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
13 lines
221 B
ArmAsm
13 lines
221 B
ArmAsm
/* https://cirosantilli.com/linux-kernel-module-cheat#arm-thumb-encoding */
|
|
|
|
#include <lkmc.h>
|
|
|
|
.thumb_func
|
|
LKMC_PROLOGUE
|
|
|
|
/* TODO: #if 0 something that is not thumb encodable. */
|
|
cbz r1, 1f
|
|
1:
|
|
|
|
LKMC_EPILOGUE
|