From b0aba4c46b14204f7de6471512136de7003877c4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 27 Apr 1998 16:10:16 +0000 Subject: Added swap of unsigned16 --- c/src/exec/score/cpu/unix/cpu.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'c/src/exec/score/cpu/unix') diff --git a/c/src/exec/score/cpu/unix/cpu.h b/c/src/exec/score/cpu/unix/cpu.h index 13558267a0..1667438f92 100644 --- a/c/src/exec/score/cpu/unix/cpu.h +++ b/c/src/exec/score/cpu/unix/cpu.h @@ -991,6 +991,9 @@ static inline unsigned int CPU_swap_u32( return( swapped ); } +#define CPU_swap_u16( value ) \ + (((value&0xff) << 8) | ((value >> 8)&0xff)) + /* * Special Purpose Routines to hide the use of UNIX system calls. */ -- cgit v1.2.3