mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 00:16:47 +08:00
20 lines
343 B
ArmAsm
20 lines
343 B
ArmAsm
#include "apple-linux-convergence.S"
|
|
|
|
/*
|
|
gcc -fPIC -shared -o my_square.so function.S
|
|
https://realpython.com/python-bindings-overview/#python-bindings-overview
|
|
*/
|
|
.p2align 2
|
|
.text
|
|
GLABEL square
|
|
|
|
#if defined(__APPLE__)
|
|
_square:
|
|
#else
|
|
square:
|
|
#endif
|
|
|
|
mul x0, x0, x0
|
|
ret
|
|
|
|
.end
|