mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
9 lines
134 B
ArmAsm
9 lines
134 B
ArmAsm
/* See the aarch64 version. */
|
|
.global main
|
|
main:
|
|
mov r0, #1
|
|
/* test-gdb-r0 */
|
|
mov r1, #2
|
|
/* test-gdb-r1 */
|
|
bx lr
|