azan

prayers time calculator written in nasm x86-64
git clone https://git.afify.dev/azan.git
Log | Files | Refs | README | LICENSE

config.def.s (717B)


      1 ; See LICENSE file for copyright and license details.
      2 
      3 %ifndef CONFIG_S
      4 %define CONFIG_S
      5 
      6 section .rodata
      7 ; Location
      8 	time_zone:	dq +3.0
      9 	longitude:	dq 39.826168
     10 	latitude:	dq 21.422510
     11 	altitude:	dq 0.0
     12 
     13 ; calculation
     14 	use_umm_al_qura	db 1
     15 	ramadan		db 0
     16 
     17 ; Fajr Isha Asr
     18 	fajr_angle	dq 18.5
     19 	isha_angle	dq 17.0	; used if use_umm_al_qura = 0
     20 	use_major	db 1	; Asr method, use hanafi if 0
     21 
     22 ;Muslim World League				18	17
     23 ;Umm al-Qura University, Makkah			18.5	autoset
     24 ;Egyptian General Authority of Survey		19.5	17.5
     25 ;Islamic Society of North America (ISNA)	15	15
     26 ;University of Islamic Sciences, Karachi	18	18
     27 ;Institute of Geophysics, University of Tehran	17.7	14*
     28 ;Shia Ithna Ashari, Qum				16	14
     29 
     30 %endif ;CONFIG_S