mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-02-06 08:30:02 +00:00
Added C interface to SNTP function.
This commit is contained in:
parent
2045754236
commit
5427dee30d
@ -35,6 +35,7 @@ IP65OBJS=\
|
||||
output_buffer.o \
|
||||
parser.o \
|
||||
sntp.o \
|
||||
sntp_c.o \
|
||||
string_utils.o \
|
||||
udp.o \
|
||||
udp_c.o \
|
||||
|
26
ip65/sntp_c.s
Normal file
26
ip65/sntp_c.s
Normal file
@ -0,0 +1,26 @@
|
||||
.include "../inc/common.i"
|
||||
|
||||
.export _sntp_get_time
|
||||
|
||||
.import sntp_get_time
|
||||
.import sntp_ip
|
||||
.import sntp_utc_timestamp
|
||||
|
||||
.importzp sreg
|
||||
|
||||
_sntp_get_time:
|
||||
stax sntp_ip
|
||||
ldax sreg
|
||||
stax sntp_ip+2
|
||||
jsr sntp_get_time
|
||||
bcs error
|
||||
ldax sntp_utc_timestamp+2
|
||||
stax sreg
|
||||
ldax sntp_utc_timestamp
|
||||
rts
|
||||
|
||||
error:
|
||||
ldx #$00
|
||||
txa
|
||||
stax sreg
|
||||
rts
|
Loading…
x
Reference in New Issue
Block a user