2009-04-16 05:55:32 +00:00
|
|
|
.include "../inc/common.i"
|
|
|
|
.include "../inc/commonprint.i"
|
|
|
|
.include "../inc/net.i"
|
|
|
|
|
|
|
|
.import exit_to_basic
|
|
|
|
|
|
|
|
.import cfg_get_configuration_ptr
|
|
|
|
.import copymem
|
|
|
|
.importzp copy_src
|
|
|
|
.importzp copy_dest
|
|
|
|
|
|
|
|
|
|
|
|
.import __CODE_LOAD__
|
|
|
|
.import __CODE_SIZE__
|
|
|
|
.import __RODATA_SIZE__
|
|
|
|
.import __DATA_SIZE__
|
|
|
|
.import tftp_upload
|
2009-04-17 15:26:10 +00:00
|
|
|
.import tftp_upload_from_memory
|
2009-04-16 05:55:32 +00:00
|
|
|
.import tftp_set_callback_vector
|
|
|
|
.import tftp_ip
|
2009-04-17 15:26:10 +00:00
|
|
|
.import tftp_filesize
|
2009-04-16 05:55:32 +00:00
|
|
|
.importzp tftp_filename
|
|
|
|
|
|
|
|
.segment "STARTUP" ;this is what gets put at the start of the file on the C64
|
|
|
|
|
|
|
|
.word basicstub ; load address
|
|
|
|
|
|
|
|
basicstub:
|
|
|
|
.word @nextline
|
|
|
|
.word 2003
|
|
|
|
.byte $9e
|
|
|
|
.byte <(((init / 1000) .mod 10) + $30)
|
|
|
|
.byte <(((init / 100 ) .mod 10) + $30)
|
|
|
|
.byte <(((init / 10 ) .mod 10) + $30)
|
|
|
|
.byte <(((init ) .mod 10) + $30)
|
|
|
|
.byte 0
|
|
|
|
@nextline:
|
|
|
|
.word 0
|
|
|
|
|
|
|
|
.segment "EXEHDR" ;this is what gets put an the start of the file on the Apple 2
|
|
|
|
.addr __CODE_LOAD__-$11 ; Start address
|
|
|
|
.word __CODE_SIZE__+__RODATA_SIZE__+__DATA_SIZE__+4 ; Size
|
|
|
|
jmp init
|
|
|
|
|
|
|
|
.code
|
|
|
|
|
|
|
|
init:
|
|
|
|
jsr print_cr
|
|
|
|
init_ip_via_dhcp
|
|
|
|
jsr print_ip_config
|
|
|
|
|
|
|
|
ldax #upload_callback
|
|
|
|
jsr tftp_set_callback_vector
|
|
|
|
lda #0
|
|
|
|
sta block_number
|
|
|
|
ldax #test_file
|
|
|
|
stax tftp_filename
|
|
|
|
lda #$ff
|
|
|
|
ldx #$3
|
|
|
|
:
|
|
|
|
sta tftp_ip,x
|
|
|
|
dex
|
|
|
|
bpl :-
|
|
|
|
|
2009-04-17 15:26:10 +00:00
|
|
|
ldax #sending_via_callback
|
2009-04-16 05:55:32 +00:00
|
|
|
jsr print
|
|
|
|
jsr tftp_upload
|
2009-04-17 15:26:10 +00:00
|
|
|
bcs @error
|
|
|
|
print_ok
|
|
|
|
|
|
|
|
ldax #basic_file
|
|
|
|
stax tftp_filename
|
|
|
|
|
|
|
|
ldax #$2000
|
|
|
|
stax tftp_filesize
|
|
|
|
ldax #sending_ram
|
|
|
|
jsr print
|
|
|
|
jsr tftp_upload_from_memory
|
|
|
|
bcs @error
|
|
|
|
print_ok
|
2009-04-16 05:55:32 +00:00
|
|
|
|
2009-04-17 15:26:10 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
@error:
|
|
|
|
print_failed
|
|
|
|
rts
|
2009-04-16 05:55:32 +00:00
|
|
|
upload_callback:
|
|
|
|
stax copy_dest
|
|
|
|
ldax #buffer1
|
|
|
|
stax copy_src
|
|
|
|
inc block_number
|
|
|
|
lda block_number
|
|
|
|
ldx #00
|
|
|
|
@next_byte:
|
|
|
|
sta buffer1,x
|
|
|
|
sta buffer2,x
|
|
|
|
inx
|
|
|
|
bne @next_byte
|
|
|
|
cmp #7
|
|
|
|
beq @last_block
|
2009-04-16 06:32:58 +00:00
|
|
|
ldax #512
|
2009-04-16 05:55:32 +00:00
|
|
|
jmp :+
|
2009-04-16 06:32:58 +00:00
|
|
|
@last_block:
|
|
|
|
ldax #129
|
|
|
|
:
|
2009-04-16 05:55:32 +00:00
|
|
|
stax block_length
|
|
|
|
jsr copymem
|
|
|
|
ldax block_length
|
|
|
|
rts
|
|
|
|
.rodata
|
|
|
|
|
|
|
|
test_file: .byte "TESTFILE.BIN",0
|
2009-04-17 15:26:10 +00:00
|
|
|
basic_file: .byte "CBMBASIC.BIN",0
|
|
|
|
sending_via_callback: .byte "SENDING VIA CALLBACK...",0
|
|
|
|
sending_ram: .byte "SENDING RAM...",0
|
2009-04-16 05:55:32 +00:00
|
|
|
.bss
|
|
|
|
block_number: .res 1
|
|
|
|
block_length: .res 2
|
|
|
|
buffer1: .res 256
|
|
|
|
buffer2: .res 256
|