A2osX/ProDOS.203/ProDOS.S.TCLK.txt

106 lines
2.9 KiB
Plaintext
Raw Permalink Normal View History

2019-04-29 20:36:58 +00:00
NEW
AUTO 3,1
* object code = tclock_0
* Thunderclock driver
* hard coded for slot 1
* $2F00-2F7C moved to $D742
2019-09-16 06:06:02 +00:00
TCLK.START ldx TCLK.Cx2+2 clock slot = $C1.
2019-04-29 20:36:58 +00:00
2019-09-13 20:48:05 +00:00
lda clkmode,x save current mode
2019-09-10 15:46:56 +00:00
pha
2019-09-13 20:48:05 +00:00
lda #$A3 send numeric mode byte to Thunderclock
2019-09-12 06:39:47 +00:00
2019-09-16 06:06:02 +00:00
TCLK.Cx1 jsr wttcp
TCLK.Cx2 jsr rdtcp read month, day of week, day of month
2019-09-13 20:48:05 +00:00
clc and time into input buffer.
ldx #$04 index for 5 values.
ldy #$0C read minutes 1st, month last.
.1 lda inbuf,y convert values to binary.
and #$07 no value > 5 decimal.
sta pcl 'tens' place value
asl multiply by 10
2019-09-10 15:46:56 +00:00
asl
adc pcl
asl
2019-09-13 20:48:05 +00:00
adc inbuf+1,y add to ascii 'ones' place
sec and subtract out the ascii
2019-09-10 15:46:56 +00:00
sbc #$B0
2019-09-13 20:48:05 +00:00
sta pcl,x save converted value.
dey index to next lowest value
2019-09-10 15:46:56 +00:00
dey
dey
2019-09-13 20:48:05 +00:00
dex are there more values?
bpl .1 if yes.
tay contains month
2019-09-10 15:46:56 +00:00
lsr
ror
ror
2019-09-13 20:48:05 +00:00
ror high bit of month held in carry
2019-09-10 15:46:56 +00:00
ora A1L
2019-09-13 20:48:05 +00:00
sta p8date save low value of date.
2019-09-12 06:39:47 +00:00
php save high bit of month.
2019-09-13 20:48:05 +00:00
and #$1F isolate day.
adc tdays-1,y (y = month)
bcc .2 branch if not Sept 13 thru 30th
adc #$03 adj for mod 7 when day > 256
2019-09-10 15:46:56 +00:00
.2 sec
.3 sbc #$07
2019-09-13 20:48:05 +00:00
bcs .3 loop until < 0.
adc #$07 make it in the range of 0-6.
sbc pch the delta provides years offset.
2019-09-10 20:53:18 +00:00
bcs .4 branch if positive
2019-09-13 20:48:05 +00:00
adc #$07 else make it positive again.
2019-09-10 20:53:18 +00:00
.4 tay
2019-09-13 20:48:05 +00:00
lda yradj,y look up year
plp and combine it with hi bit of month
2019-09-10 15:46:56 +00:00
rol
2019-09-13 20:48:05 +00:00
sta p8date+1 P8 date
lda A1L+1 hour
sta p8time+1 P8 time
lda A2L minute
2019-09-10 15:46:56 +00:00
sta p8time
2019-09-13 20:48:05 +00:00
pla restore previous mode.
2019-09-16 06:06:02 +00:00
ldx TCLK.Cx2+2 clock slot = $C1
2019-09-10 15:46:56 +00:00
sta clkmode,x
2019-09-16 06:06:02 +00:00
TCLK.CEND rts
2019-04-29 20:36:58 +00:00
* this table contains entries for the cumulative # of days in a year,
* one entry for each month. the values are modulo 256.
2019-09-16 06:06:02 +00:00
tdays .DA #$00 January
2019-09-13 20:48:05 +00:00
.DA #$1F February
.DA #$3B March
.DA #$5A April
.DA #$78 May
.DA #$97 June
.DA #$B5 July
.DA #$D3 August
.DA #$F2 September
.DA #$14 October (MOD 256)
.DA #$33 November
.DA #$51 December
2019-04-29 20:36:58 +00:00
* the following table is used to look up the current year, based on
* the current month, day and day of week. The 1st entry corresponds
* to the year in which January 1st falls on a Monday. The 2nd entry
* is the year which January 1st is Sunday, and so on backwards thru
* the days of the week.
yradj .DA #$18 Monday
2019-10-18 19:57:38 +00:00
.DA #$17 Sunday
.DA #$16 Saturday
.DA #$1B Friday
.DA #$1A Thursday
.DA #$19 Wednesday
.DA #$18 Tuesday
2019-09-16 06:06:02 +00:00
TCLK.END .HS 000000 pad
2019-04-29 20:36:58 +00:00
*--------------------------------------
MAN
SAVE usr/src/prodos.203/prodos.s.tclk
LOAD usr/src/prodos.203/prodos.s
2019-04-29 20:36:58 +00:00
ASM