;File:                EEBEACON.ASM
;Version:             1.3
;Last updated:        08.06.2020
;Author:              GM, a.k.a. George
;Target:              (ATtiny861, 8 MHz internal oscillator)
;
;Support E-mail:
;
;DESCRIPTION
;The programme produces the eeprom content for the LFBEACON project

         .nolist
         .include "tn861Adef.inc"          ;definitions for ATtiny861A
         .list
         .eseg
         .org     0x000
frqs:    .db      0x95,0x02,0x23,0xB8      ;fSAMPLE=24999454.00 Hz
frq1:    .db      0x00,0xD1,0xCE,0xF0      ;fOUT1=137500.00 Hz
frq2:    .db      0x00,0xD1,0xCE,0xF1      ;fOUT2=137501.00 Hz
tau0:    .db      0x00,0x01,0xD4,0xC0      ;in us units
t0d3:    .db      0x00,0x00,0x9C,0x40      ;1/3-rd duration of tau0 in us units
pause:   .db      0x00,0x07,0xA1,0x20      ;in us units
msg0:    .db      "THE CHASM GAPED BEFORE HIM",0,0
         .org     msg0+100
msg1:    .db      "CQ RA3TTS K",0
         .org     msg0+200
msg2:    .db      "CQ RN3AUS K",0
         .org     msg0+300
msg3:    .db      "CQ RW3ADB K",0
         .exit

