mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 19:21:35 +01:00
15 lines
303 B
ArmAsm
15 lines
303 B
ArmAsm
/* https://github.com/cirosantilli/arm-assembly-cheat#comments */
|
|
|
|
#include "common.h"
|
|
ENTRY
|
|
# mycomment
|
|
@ mycomment
|
|
/* # only works at the beginning of the line.
|
|
* Error: garbage following instruction -- `nop #comment'
|
|
*/
|
|
#if 0
|
|
nop # mycomment
|
|
#endif
|
|
nop @ mycomment
|
|
EXIT
|