mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
15 lines
336 B
ArmAsm
15 lines
336 B
ArmAsm
/* https://cirosantilli.com/linux-kernel-module-cheat#gnu-gas-assembler-comments */
|
|
|
|
#include <lkmc.h>
|
|
LKMC_PROLOGUE
|
|
# mycomment
|
|
@ mycomment
|
|
/* # only works at the beginning of the line.
|
|
* Error: garbage following instruction -- `nop #comment'
|
|
*/
|
|
#if 0
|
|
nop # mycomment
|
|
#endif
|
|
nop @ mycomment
|
|
LKMC_EPILOGUE
|