emailler/test/ping.s

86 lines
1.7 KiB
ArmAsm
Raw Normal View History

2013-12-13 21:24:03 +00:00
.include "../inc/common.i"
.include "../inc/commonprint.i"
.include "../inc/net.i"
2013-12-13 21:24:03 +00:00
.import exit_to_basic
2013-12-13 21:24:03 +00:00
.import cfg_get_configuration_ptr
.import copymem
.importzp copy_src
.importzp copy_dest
2013-12-13 21:24:03 +00:00
.import icmp_echo_ip
.import icmp_ping
.segment "STARTUP" ;this is what gets put at the start of the file on the C64
;switch to lower case charset
lda #23
sta $d018
2013-12-13 21:24:03 +00:00
jsr print_cr
init_ip_via_dhcp
jsr print_ip_config
jsr print_cr
2013-12-13 21:24:03 +00:00
;our default gateway is probably a safe thing to ping
ldx #$3
:
lda cfg_gateway,x
sta icmp_echo_ip,x
dex
bpl :-
2013-12-13 21:24:03 +00:00
ldax #pinging
jsr print
2013-12-13 21:24:03 +00:00
ldax #icmp_echo_ip
jsr print_dotted_quad
jsr print_cr
jsr icmp_ping
bcs @error
jsr print_integer
ldax #ms
jsr print
rts
@error:
jmp print_errorcode
.rodata
2013-12-13 21:24:03 +00:00
ms: .byte " MS",13,0
pinging: .byte "PINGING ",0
.bss
2013-12-13 21:24:03 +00:00
block_number: .res 1
block_length: .res 2
buffer1: .res 256
buffer2: .res 256
2013-12-13 21:24:03 +00:00
;-- LICENSE FOR test_ping.s --
; The contents of this file are subject to the Mozilla Public License
; Version 1.1 (the "License"); you may not use this file except in
; compliance with the License. You may obtain a copy of the License at
; http://www.mozilla.org/MPL/
;
; Software distributed under the License is distributed on an "AS IS"
; basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
; License for the specific language governing rights and limitations
; under the License.
;
; The Original Code is ip65.
;
; The Initial Developer of the Original Code is Jonno Downes,
; jonno@jamtronix.com.
; Portions created by the Initial Developer are Copyright (C) 2009
; Jonno Downes. All Rights Reserved.
; -- LICENSE END --