mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
Made dio_read(), dio_write(), and dio_write_verify() catch sector number conversion errors.
This commit is contained in:
parent
6fd56bf9b6
commit
39b4b6838f
@ -1,6 +1,6 @@
|
|||||||
;
|
;
|
||||||
; Maciej 'YTM/Elysium' Witkowiak
|
; 2001-07-02, Maciej 'YTM/Elysium' Witkowiak
|
||||||
; 2.7.2001
|
; 2015-08-27, Greg King
|
||||||
;
|
;
|
||||||
; this file provides the _dio_read function
|
; this file provides the _dio_read function
|
||||||
;
|
;
|
||||||
@ -15,7 +15,9 @@
|
|||||||
|
|
||||||
_dio_read:
|
_dio_read:
|
||||||
jsr dio_params
|
jsr dio_params
|
||||||
|
tay
|
||||||
|
bne err
|
||||||
jsr ReadBlock
|
jsr ReadBlock
|
||||||
stx __oserror
|
stx __oserror
|
||||||
txa
|
txa
|
||||||
rts
|
err: rts
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
;
|
;
|
||||||
; Maciej 'YTM/Elysium' Witkowiak
|
; 2001-07-02, Maciej 'YTM/Elysium' Witkowiak
|
||||||
; 2.7.2001
|
; 2015-08-27, Greg King
|
||||||
;
|
;
|
||||||
; this file provides the _dio_write function
|
; this file provides the _dio_write function
|
||||||
;
|
;
|
||||||
@ -15,5 +15,9 @@
|
|||||||
|
|
||||||
_dio_write:
|
_dio_write:
|
||||||
jsr dio_params
|
jsr dio_params
|
||||||
|
tay
|
||||||
|
bne err
|
||||||
jsr WriteBlock
|
jsr WriteBlock
|
||||||
jmp setoserror
|
jmp setoserror
|
||||||
|
|
||||||
|
err: rts
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
;
|
;
|
||||||
; Maciej 'YTM/Elysium' Witkowiak
|
; 2001-07-02, Maciej 'YTM/Elysium' Witkowiak
|
||||||
; 2.7.2001
|
; 2015-08-27, Greg King
|
||||||
;
|
;
|
||||||
; this file provides the _dio_write function
|
; this file provides the _dio_write function
|
||||||
;
|
;
|
||||||
@ -15,7 +15,9 @@
|
|||||||
|
|
||||||
_dio_write_verify:
|
_dio_write_verify:
|
||||||
jsr dio_params
|
jsr dio_params
|
||||||
|
tay
|
||||||
|
bne err
|
||||||
jsr VerWriteBlock
|
jsr VerWriteBlock
|
||||||
stx __oserror
|
stx __oserror
|
||||||
txa
|
txa
|
||||||
rts
|
err: rts
|
||||||
|
Loading…
x
Reference in New Issue
Block a user