mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-29 20:10:28 -04: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
 |