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