mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
17 lines
230 B
ArmAsm
17 lines
230 B
ArmAsm
|
;
|
||
|
; Colin Leroy-Mira <colin@colino.net>, 2023-09-06
|
||
|
;
|
||
|
; int __fastcall__ ntohs (int val);
|
||
|
;
|
||
|
|
||
|
.export _ntohs, _htons
|
||
|
.importzp tmp1
|
||
|
|
||
|
_htons := _ntohs
|
||
|
|
||
|
_ntohs:
|
||
|
sta tmp1
|
||
|
txa
|
||
|
ldx tmp1
|
||
|
rts
|