Add ntohs, htons, ntohl, htons.
This commit is contained in:
18
libsrc/common/ntohs.s
Normal file
18
libsrc/common/ntohs.s
Normal file
@@ -0,0 +1,18 @@
|
||||
;
|
||||
; Colin Leroy-Mira <colin@colino.net>, 2023-09-06
|
||||
;
|
||||
; int __fastcall__ ntohs (int val);
|
||||
;
|
||||
|
||||
.export _ntohs, _htons
|
||||
.importzp tmp1
|
||||
|
||||
_htons := _ntohs
|
||||
|
||||
.code
|
||||
|
||||
_ntohs:
|
||||
sta tmp1
|
||||
txa
|
||||
ldx tmp1
|
||||
rts
|
||||
Reference in New Issue
Block a user