mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 07:51:16 -05:00
c80ba1b2ed
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/WSJT/trunk@10 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
15 lines
260 B
Fortran
15 lines
260 B
Fortran
|
|
!------------------------------------------------- hscroll
|
|
subroutine hscroll(a,nx)
|
|
integer*2 a(750,300)
|
|
|
|
do j=1,150
|
|
do i=1,750
|
|
if(nx.gt.50) a(i,150+j)=a(i,j)
|
|
a(i,j)=0
|
|
enddo
|
|
enddo
|
|
return
|
|
|
|
end subroutine hscroll
|