regex: updates from neatvi
[neatlibc.git] / x64 / bits.s
blob169e93a270a4bd67b6635cccf7c12139127c44a1
4 global htonl
5 global ntohl
6 htonl:
7 ntohl:
8 mov eax, edi
9 xchg al, ah
10 ror eax, 16
11 xchg al, ah
12 ret
14 global htons
15 global ntohs
16 htons:
17 ntohs:
18 mov eax, edi
19 ror ax, 8
20 ret