mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
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
|