git-svn-id: http://svn.code.sf.net/p/netboot65/code@249 93682198-c243-4bdb-bd91-e943c89aac3b

This commit is contained in:
jonnosan 2010-01-31 06:50:18 +00:00
parent 3beca2846d
commit ebb574642e
2 changed files with 11 additions and 1 deletions

View File

@ -327,10 +327,17 @@ xmodem_receive:
beq @got_soh
cmp #SOH
beq @got_soh
jsr print_hex
lda #'!' ;we got an unexpected character
jsr print_a
jsr print_hex
;we need to clear the input buffer
@clear_input_buffer:
lda #'!' ;we got an unexpected character
jsr print_a
lda #1
jsr getc
bcc @clear_input_buffer
jmp @wait_for_block_start
@got_soh:

View File

@ -1,3 +1,6 @@
v1.0.29
- FIX: XMODEM didn't recover if remote end tried to use 1K blocks
v1.0.28
- CHANGE: after playing a SID, go back to last viewed dir listing, not main menu
- FIX: PETSCII mode telnet was broken