NCEPLIBS-w3emc  2.11.0
xmovex.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Assembler language to move data
3 C> @author Unknown @date Unknown
4 
5 C> ### Program History Log:
6 C> Date | Programmer | Comment
7 C> -----|------------|--------
8 C> Unkonwn | Unknonw | Initial.
9 C>
10 C> @param[out] OUT
11 C> @param[in] IN
12 C> @param IBYTES
13 C> This subroutine may not be needed, its was in
14 C> assembler language to move data, it ran about three
15 C> times faster than a fortan do loop, it was used to
16 C> make sure the data to be unpacked was on a word boundary,
17 C> this may not be needed on some brands of computers.
18 C>
19 C> @author Unknown @date Unknown
20  SUBROUTINE xmovex(OUT,IN,IBYTES)
21  CHARACTER*1 OUT(*)
22  CHARACTER*1 IN(*)
23 C
24  INTEGER IBYTES
25 C
26  DO 100 i = 1,ibytes
27  out(i) = in(i)
28  100 CONTINUE
29 C
30  RETURN
31  END
subroutine xmovex(OUT, IN, IBYTES)
Definition: xmovex.f:21