Added a pfs_remove() function and a pfs_seek() stub to the Commodore platforms.
- "Normalized" some Assembly code. - Implemented CFS_APPEND in pfs_open(). - Made CFS_WRITE work in VICE's virtual disk/file system.
This commit is contained in:
parent
3b9fa19a66
commit
4f28289df2
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -80,7 +80,7 @@ contiki-cc2530dk.lib
|
||||||
*.dsc
|
*.dsc
|
||||||
|
|
||||||
#cc65 build artifacts
|
#cc65 build artifacts
|
||||||
*.S
|
*.s
|
||||||
*.eth
|
*.eth
|
||||||
*.dsk
|
*.dsk
|
||||||
*.po
|
*.po
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* Author: Oliver Schmidt <ol.sc@web.de>
|
* Author: Oliver Schmidt <ol.sc@web.de>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -35,11 +35,13 @@
|
||||||
#ifndef PFS_H_
|
#ifndef PFS_H_
|
||||||
#define PFS_H_
|
#define PFS_H_
|
||||||
|
|
||||||
int __fastcall__ pfs_open(const char* name, int flags);
|
#include <sys/types.h>
|
||||||
void __fastcall__ pfs_close(int fd);
|
|
||||||
int __fastcall__ pfs_read(int fd, void* buf, unsigned int len);
|
int __fastcall__ pfs_open(const char *name, int flags);
|
||||||
int __fastcall__ pfs_write(int fd, void* buf, unsigned int len);
|
void __fastcall__ pfs_close(int fd);
|
||||||
int __fastcall__ pfs_seek(int fd, int offset, int whence);
|
int __fastcall__ pfs_read(int fd, void *buf, unsigned int len);
|
||||||
int __fastcall__ pfs_remove(const char *name);
|
int __fastcall__ pfs_write(int fd, const void *buf, unsigned int len);
|
||||||
|
off_t __fastcall__ pfs_seek(int fd, off_t offset, int whence);
|
||||||
|
int __fastcall__ pfs_remove(const char *name);
|
||||||
|
|
||||||
#endif /* PFS_H_ */
|
#endif /* PFS_H_ */
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
# Author: Oliver Schmidt <ol.sc@web.de>
|
# Author: Oliver Schmidt <ol.sc@web.de>
|
||||||
#
|
#
|
||||||
|
|
||||||
CONTIKI_TARGET_SOURCEFILES += lseek.c pfs.S pfs_write.S
|
CONTIKI_TARGET_SOURCEFILES += lseek.c pfs.S pfs_remove.S pfs_seek.S pfs_write.S
|
||||||
|
|
||||||
CONTIKI_CPU = $(CONTIKI)/cpu/6502
|
CONTIKI_CPU = $(CONTIKI)/cpu/6502
|
||||||
include $(CONTIKI_CPU)/Makefile.6502
|
include $(CONTIKI_CPU)/Makefile.6502
|
||||||
|
|
|
@ -29,99 +29,212 @@
|
||||||
; This file is part of the Contiki operating system.
|
; This file is part of the Contiki operating system.
|
||||||
;
|
;
|
||||||
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
||||||
|
; Author: Greg King <gregdk@users.sf.net>
|
||||||
;
|
;
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.define F_IDE64 0 ; support IDE64, not on C128
|
.define F_IDE64 0 ; C128 doesn't have IDE64
|
||||||
|
|
||||||
.constructor init_pfs
|
.constructor init_pfs
|
||||||
.destructor done_pfs
|
.destructor done_pfs
|
||||||
.importzp ptr1, ptr2, ptr3, sp
|
.importzp sp, ptr1, ptr2, ptr3
|
||||||
.import curunit, __filetype, popax, addysp, subysp
|
.import curunit, __filetype, popax, addysp, subysp
|
||||||
.export pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
.export pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
.export ide64_rwprepare, ide64_rwfinish
|
.export ide64_rwprepare, ide64_rwfinish
|
||||||
.endif
|
.endif
|
||||||
.export _pfs_open, _pfs_read, _pfs_close
|
.export cmdc, flags
|
||||||
|
.export pfs_makename, pfs_scratch
|
||||||
|
|
||||||
|
.export _pfs_open, _pfs_read, _pfs_close
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
F_EOF = $80
|
MAXLEN = 80 ;maximum filename length
|
||||||
F_NBLK = $40
|
|
||||||
F_OPEN = $20
|
; Flag bits
|
||||||
F_MAXLEN = 80 ;max filename length
|
F_EOF = %10000000 ;end of file
|
||||||
ST = $90 ;status
|
F_NBLK = %01000000 ;block read/write not available
|
||||||
FN = $BB ;filename
|
F_OPEN = %00100000
|
||||||
FNL = $B7 ;filenamelength
|
|
||||||
LF = $B8 ;logical file number
|
; Kernal variables
|
||||||
SA = $B9 ;secondary address
|
ST := $90 ;status
|
||||||
OPEN = $FFC0
|
FN := $BB ;filename
|
||||||
CLOSE = $FFC3
|
FNL := $B7 ;filename length
|
||||||
CHKIN = $FFC6
|
LF := $B8 ;logical file number
|
||||||
CHKOUT = $FFC9
|
|
||||||
CLRCHN = $FFCC
|
OPNVec := $031A ;address vector to OPEN function's code
|
||||||
CHRIN = $FFCF
|
|
||||||
CHROUT = $FFD2
|
; IDEDOS function
|
||||||
SETLFS = $FFBA
|
READ := $DEF4
|
||||||
SETNAM = $FFBD
|
|
||||||
CLALL = $FFE7
|
; Kernal functions
|
||||||
WRITE = $DEF1
|
SETLFS := $FFBA
|
||||||
READ = $DEF4
|
SETNAM := $FFBD
|
||||||
|
OPEN := $FFC0
|
||||||
|
CLOSE := $FFC3
|
||||||
|
CHKIN := $FFC6
|
||||||
|
CHKOUT := $FFC9
|
||||||
|
CLRCHN := $FFCC
|
||||||
|
CHRIN := $FFCF
|
||||||
|
CHROUT := $FFD2
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.data
|
.data
|
||||||
|
|
||||||
illchr: .byte $3A, $2A, $3F, $3D ;illegal chars
|
; illchr and sw must stay together because the comma, also, is illegal in names.
|
||||||
pw: .byte $2C, $50, $2C, $57 ;,p,w
|
illchr: .byte "*?:=" ;illegal chars
|
||||||
|
sw: .byte ",s,w"
|
||||||
cmdc: .byte 0
|
cmdc: .byte 0
|
||||||
flags: .res 10
|
flags: .res 10 ;(Kernal allows only ten open files)
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.segment "ONCE"
|
.segment "ONCE"
|
||||||
|
|
||||||
init_pfs:
|
init_pfs:
|
||||||
ldy #F_MAXLEN+8
|
ldy #MAXLEN + 8
|
||||||
jsr subysp ;allocate
|
jsr subysp ;allocate because open2 will free it
|
||||||
lda #0
|
lda #0 ;no name, file number 1
|
||||||
sta FNL ;no name
|
sta FNL
|
||||||
ldy #15-1
|
ldy #15 - 1 ;secondary address 15
|
||||||
jsr open2 ;open command channel
|
jsr open2 ;open command channel
|
||||||
sta cmdc
|
sta cmdc
|
||||||
rts
|
rts
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.code
|
.code
|
||||||
|
|
||||||
error3: jmp error
|
|
||||||
|
|
||||||
_pfs_open:
|
_pfs_open:
|
||||||
sta ptr2
|
sta ptr2 ;save open-mode flags
|
||||||
; Pop and store name
|
|
||||||
|
; Get and store name
|
||||||
jsr popax
|
jsr popax
|
||||||
|
jsr pfs_makename
|
||||||
|
lda FNL
|
||||||
|
beq error ;must have a filename
|
||||||
|
|
||||||
|
lda #2 - 1 ;file number
|
||||||
|
tay ;secondary address
|
||||||
|
open2: sta ptr2
|
||||||
|
sty ptr2 + 1
|
||||||
|
|
||||||
|
next: inc ptr2 ;next file number
|
||||||
|
ldx ptr2 ;file number
|
||||||
|
cpx #.sizeof(flags) + 1
|
||||||
|
bcs error ;no more files
|
||||||
|
lda flags - 1,x
|
||||||
|
bne next ;already used
|
||||||
|
lda ptr2 + 1
|
||||||
|
bne nextsa
|
||||||
|
inx
|
||||||
|
stx ptr2 + 1
|
||||||
|
nextsa: inc ptr2 + 1 ;next channel
|
||||||
|
retr: lda ptr2 ;file number
|
||||||
|
ldx curunit
|
||||||
|
ldy ptr2 + 1 ;secondary address (channel number)
|
||||||
|
jsr SETLFS
|
||||||
|
jsr OPEN ;open a pair of files (in computer and drive)
|
||||||
|
bcs oerr ;branch if could not open computer file
|
||||||
|
ldx cmdc
|
||||||
|
beq opok ;branch if error channel just was openned
|
||||||
|
jsr CHKIN
|
||||||
|
bcs error
|
||||||
|
jsr CHRIN
|
||||||
|
pha ;first digit of error code
|
||||||
|
jsr CHRIN
|
||||||
|
sta ptr1 ;second digit
|
||||||
|
@L4: jsr CHRIN ;flush status message
|
||||||
|
lda ST
|
||||||
|
beq @L4
|
||||||
|
jsr CLRCHN
|
||||||
|
pla
|
||||||
|
cmp #'2'
|
||||||
|
bcc opok ;no serious error
|
||||||
|
pha
|
||||||
|
lda ptr2
|
||||||
|
jsr CLOSE ;close computer file
|
||||||
|
pla
|
||||||
|
ldx ptr1
|
||||||
|
cmp #'7' ;no channel?
|
||||||
|
bne nnoc
|
||||||
|
cpx #'0'
|
||||||
|
bne error ;not "no channel"
|
||||||
|
lda ptr2 + 1
|
||||||
|
cmp #14
|
||||||
|
bcc nextsa ;try next channel
|
||||||
|
bcs error ;give up
|
||||||
|
|
||||||
|
opok: ldx ptr2
|
||||||
|
lda #F_OPEN
|
||||||
|
sta flags - 1,x
|
||||||
|
txa ;OK, return file number
|
||||||
|
ret0: ldx #>$0000
|
||||||
|
ret: ldy #MAXLEN + 8 ;free filename space
|
||||||
|
jmp addysp
|
||||||
|
|
||||||
|
oerr: dec ptr2 + 1
|
||||||
|
cmp #2 ;already open,
|
||||||
|
beq next ;retry with next
|
||||||
|
|
||||||
|
error: lda #<-1
|
||||||
|
tax ;failed
|
||||||
|
bne ret
|
||||||
|
|
||||||
|
nnoc: inc ptr3
|
||||||
|
bne error ;no retry
|
||||||
|
cmp #'6'
|
||||||
|
bne error ;not "file exists"
|
||||||
|
cpx #'3'
|
||||||
|
bne error
|
||||||
|
jsr pfs_scratch
|
||||||
|
bcc retr
|
||||||
|
bcs error ;branch always
|
||||||
|
|
||||||
|
pfs_scratch:
|
||||||
|
ldx cmdc
|
||||||
|
jsr CHKOUT
|
||||||
|
bcs @L5
|
||||||
|
ldy #1
|
||||||
|
lda #'s' ;scratch
|
||||||
|
@L4: jsr CHROUT
|
||||||
|
lda (FN),y
|
||||||
|
iny
|
||||||
|
cmp #','
|
||||||
|
bne @L4
|
||||||
|
lda #$0D ;carriage return
|
||||||
|
jsr CHROUT
|
||||||
|
jsr CLRCHN
|
||||||
|
clc ;carry = 0: OK
|
||||||
|
@L5: rts ;carry = 1: error
|
||||||
|
|
||||||
|
pfs_makename:
|
||||||
sta FN
|
sta FN
|
||||||
stx FN+1 ;filename (kernal)
|
stx FN+1 ;Kernal filename pointer
|
||||||
ldy #F_MAXLEN+8
|
ldy #MAXLEN + 8
|
||||||
jsr subysp ;allocate name
|
jsr subysp ;allocate name space
|
||||||
ldy #255
|
|
||||||
|
; Validate the name; and, find its length
|
||||||
|
ldy #<-1
|
||||||
sty ptr3
|
sty ptr3
|
||||||
sty ptr1
|
sty ptr1
|
||||||
@L10: iny
|
@L10: iny
|
||||||
cpy #F_MAXLEN
|
cpy #MAXLEN
|
||||||
bcs error3 ;too long...
|
bcs badchr ;too long
|
||||||
ldx #4 ;4+1 (comma)
|
lda (FN),y
|
||||||
|
ldx #.sizeof(illchr); 4 + 1 (includes comma)
|
||||||
@L12: cmp illchr,x
|
@L12: cmp illchr,x
|
||||||
beq error3 ;illegal char?
|
beq badchr ;illegal char
|
||||||
dex
|
dex
|
||||||
bpl @L12
|
bpl @L12
|
||||||
cmp #$2F
|
cmp #'/'
|
||||||
bne @L11
|
bne @L11
|
||||||
sty ptr1 ;last slash
|
sty ptr1 ;last slash
|
||||||
@L11: lda (FN),y
|
@L11: tax ;test for '\0'
|
||||||
bne @L10
|
bne @L10
|
||||||
sty FNL
|
cpy #0
|
||||||
|
beq badchr ;no name
|
||||||
|
|
||||||
tay
|
tay ;zero index reg.
|
||||||
tax
|
lda #'0' ;drive 0 or current partition
|
||||||
lda #$30 ;this partition
|
|
||||||
sta (sp),y
|
sta (sp),y
|
||||||
iny
|
iny
|
||||||
inc ptr1
|
inc ptr1
|
||||||
beq nopath
|
beq nopath
|
||||||
lda #$2F
|
lda #'/'
|
||||||
@L13: sta (sp),y
|
@L13: sta (sp),y
|
||||||
iny
|
iny
|
||||||
lda (FN,x)
|
lda (FN,x)
|
||||||
|
@ -130,158 +243,67 @@ _pfs_open:
|
||||||
inc FN+1
|
inc FN+1
|
||||||
@L14: cpy ptr1
|
@L14: cpy ptr1
|
||||||
bcc @L13
|
bcc @L13
|
||||||
lda #$2F
|
;lda #'/' ; (.A already has a slash)
|
||||||
sta (sp),y
|
sta (sp),y
|
||||||
iny
|
iny
|
||||||
nopath: lda #$3A
|
nopath: lda #':'
|
||||||
@L16: sta (sp),y
|
@L16: sta (sp),y
|
||||||
iny
|
iny
|
||||||
lda (FN,x)
|
lda (FN,x)
|
||||||
inc FN
|
inc FN
|
||||||
bne @L15
|
bne @L15
|
||||||
inc FN+1
|
inc FN+1
|
||||||
@L15: ora #0
|
@L15: ora #$00 ;test for '\0'
|
||||||
bne @L16
|
bne @L16
|
||||||
lsr ptr2
|
lsr ptr2
|
||||||
bcs ro ;read only
|
bcs ro ;read-only (read-write not supported)
|
||||||
lda __filetype
|
lda __filetype
|
||||||
sta pw+1 ;set filetype
|
sta sw + 1 ;set filetype
|
||||||
ldx #252
|
lsr ptr2
|
||||||
@L20: lda pw-252,x
|
lda #'w' ;write-only
|
||||||
sta (sp),y ;write
|
lsr ptr2
|
||||||
|
bcc write
|
||||||
|
lda #'a' ;append
|
||||||
|
write: sta sw + 3 ;set mode
|
||||||
|
ldx #$0100 - .sizeof(sw)
|
||||||
|
@L20: lda sw - ($0100 - .sizeof(sw)),x
|
||||||
|
sta (sp),y
|
||||||
iny
|
iny
|
||||||
inx
|
inx
|
||||||
bne @L20
|
bne @L20
|
||||||
ro: tya ;name length (kernal)
|
ro: tya ;pathname length
|
||||||
ldx sp
|
ldx sp
|
||||||
ldy sp+1
|
ldy sp+1
|
||||||
jsr SETNAM
|
namset: jmp SETNAM
|
||||||
|
|
||||||
lda #0 ;file number
|
badchr: lda #0
|
||||||
tay ;secondary address
|
beq namset
|
||||||
open2: sta ptr2
|
|
||||||
sty ptr2+1
|
|
||||||
|
|
||||||
next: inc ptr2 ;next file number
|
|
||||||
ldx ptr2 ;file number
|
|
||||||
cpx #11
|
|
||||||
bcs error ;no more files
|
|
||||||
lda flags-1,x
|
|
||||||
bne next ;already used
|
|
||||||
lda ptr2+1
|
|
||||||
bne nextsa
|
|
||||||
inx
|
|
||||||
stx ptr2+1
|
|
||||||
nextsa: inc ptr2+1 ;next channel
|
|
||||||
retr: lda ptr2 ;file number
|
|
||||||
ldx curunit
|
|
||||||
ldy ptr2+1 ;secondary address
|
|
||||||
jsr SETLFS
|
|
||||||
jsr OPEN ;open
|
|
||||||
bcs oerr
|
|
||||||
ldx cmdc
|
|
||||||
beq opok ;error channel open
|
|
||||||
jsr CHKIN
|
|
||||||
bcs error
|
|
||||||
jsr CHRIN
|
|
||||||
pha
|
|
||||||
jsr CHRIN
|
|
||||||
sta ptr1
|
|
||||||
@L4: jsr CHRIN
|
|
||||||
lda ST
|
|
||||||
beq @L4
|
|
||||||
jsr CLRCHN
|
|
||||||
pla
|
|
||||||
tax
|
|
||||||
lsr
|
|
||||||
cmp #$18 ;no serious error
|
|
||||||
beq opok
|
|
||||||
txa
|
|
||||||
pha
|
|
||||||
lda ptr2
|
|
||||||
jsr CLOSE ;close
|
|
||||||
pla
|
|
||||||
ldx ptr1
|
|
||||||
cmp #$37 ;no channel?
|
|
||||||
bne nnoc
|
|
||||||
cpx #$30
|
|
||||||
bne error ;not no channel
|
|
||||||
lda ptr2+1
|
|
||||||
cmp #14
|
|
||||||
bcc nextsa ;try next channel
|
|
||||||
bcs error ;give up
|
|
||||||
|
|
||||||
opok: ldx ptr2
|
|
||||||
lda #F_OPEN
|
|
||||||
sta flags-1,x
|
|
||||||
txa ;ok, return file number
|
|
||||||
ldx #0
|
|
||||||
ret: ldy #F_MAXLEN+8 ; free filename
|
|
||||||
jmp addysp
|
|
||||||
|
|
||||||
oerr: dec ptr2+1
|
|
||||||
cmp #2 ;already open,
|
|
||||||
beq next ;retry with next
|
|
||||||
|
|
||||||
error: lda #$FF
|
|
||||||
tax ;failed
|
|
||||||
bne ret
|
|
||||||
|
|
||||||
nnoc: inc ptr3
|
|
||||||
bne error ;no retry
|
|
||||||
cmp #$36
|
|
||||||
bne error ;no exists
|
|
||||||
cpx #$33
|
|
||||||
bne error
|
|
||||||
ldx cmdc
|
|
||||||
jsr CHKOUT
|
|
||||||
bcs error
|
|
||||||
lda FNL
|
|
||||||
sec
|
|
||||||
sbc #5
|
|
||||||
tax
|
|
||||||
lda #$53 ;scratch
|
|
||||||
jsr CHROUT
|
|
||||||
ldy #1
|
|
||||||
@L4: lda (FN),y
|
|
||||||
iny
|
|
||||||
jsr CHROUT
|
|
||||||
dex
|
|
||||||
bne @L4
|
|
||||||
lda #$3D
|
|
||||||
jsr CHROUT
|
|
||||||
iny
|
|
||||||
lda (FN),y
|
|
||||||
jsr CHROUT
|
|
||||||
lda #$0d
|
|
||||||
jsr CHROUT
|
|
||||||
jsr CLRCHN
|
|
||||||
jmp retr
|
|
||||||
|
|
||||||
.proc _pfs_read
|
.proc _pfs_read
|
||||||
jsr pfs_rwcommon ; pop params, check handle
|
jsr pfs_rwcommon ; pop params, check handle
|
||||||
beq error2 ; not open
|
beq error2 ; not open
|
||||||
|
|
||||||
bmi eof
|
bmi eof
|
||||||
.if F_IDE64
|
|
||||||
asl
|
.if F_IDE64
|
||||||
|
asl a
|
||||||
bmi nblk ; no block operation
|
bmi nblk ; no block operation
|
||||||
|
|
||||||
jsr CHKIN
|
jsr CHKIN
|
||||||
bcs error2
|
bcs error2
|
||||||
|
|
||||||
; check support
|
; check support
|
||||||
jsr ide64_rwprepare
|
jsr ide64_rwprepare
|
||||||
bcs norm
|
bcs norm
|
||||||
|
|
||||||
; read
|
; do a block read
|
||||||
jsr READ
|
jsr READ
|
||||||
bcs nosup
|
bcs nosup
|
||||||
jmp ide64_rwfinish
|
jmp ide64_rwfinish
|
||||||
|
|
||||||
nosup: lda #F_NBLK
|
nosup: lda #F_NBLK
|
||||||
jsr pfs_rwsetflags
|
jsr pfs_rwsetflags
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
; Valid lfn. Make it the input file
|
; Valid lfn. Make it the input file
|
||||||
nblk: jsr CHKIN
|
nblk: jsr CHKIN
|
||||||
|
@ -292,15 +314,15 @@ norm: ldy #0
|
||||||
@L3: inc ptr1
|
@L3: inc ptr1
|
||||||
bne @L0
|
bne @L0
|
||||||
inc ptr1+1
|
inc ptr1+1
|
||||||
beq done ; branch always
|
beq done
|
||||||
|
|
||||||
; Read the next byte
|
; Read the next byte
|
||||||
@L0: jsr CHRIN
|
@L0: jsr CHRIN
|
||||||
tax ; save the input byte
|
tax ; save the input byte
|
||||||
|
|
||||||
lda ST ; read the IEEE status
|
lda ST ; read the file status
|
||||||
cmp #1 ; save it
|
cmp #$01 ; save it
|
||||||
and #%10111111 ; check anything but the EOI bit
|
and #%10111111 ; check anything but the EOF bit
|
||||||
bne error5 ; assume device not present
|
bne error5 ; assume device not present
|
||||||
|
|
||||||
; Store the byte just read
|
; Store the byte just read
|
||||||
|
@ -310,45 +332,60 @@ norm: ldy #0
|
||||||
bne @L1
|
bne @L1
|
||||||
inc ptr2+1 ; *buf++ = A;
|
inc ptr2+1 ; *buf++ = A;
|
||||||
|
|
||||||
; Get the status again and check the EOI bit
|
; Get the status again; and, check the EOF bit
|
||||||
@L1: bcc @L3 ; loop if no end of file
|
@L1: bcc @L3 ; loop if not end of file
|
||||||
|
|
||||||
; Set the EOI flag and bail out
|
; Set the EOF flag; and, bail out
|
||||||
lda #F_EOF
|
lda #F_EOF
|
||||||
jsr pfs_rwsetflags
|
jsr pfs_rwsetflags
|
||||||
|
|
||||||
; Read done, close the input channel
|
; Read done; cancel the input channel
|
||||||
done: jsr CLRCHN ; clrchn
|
done: jsr CLRCHN
|
||||||
|
|
||||||
; Return the number of chars read
|
; Return the number of chars read
|
||||||
eof: jmp pfs_rwcommonend
|
eof:
|
||||||
|
; jmp pfs_rwcommonend ; (fall through)
|
||||||
|
.endproc
|
||||||
|
|
||||||
|
.proc pfs_rwcommonend
|
||||||
|
lda ptr2
|
||||||
|
sec
|
||||||
|
sbc ptr3
|
||||||
|
pha
|
||||||
|
lda ptr2+1
|
||||||
|
sbc ptr3+1
|
||||||
|
tax
|
||||||
|
pla
|
||||||
|
rts
|
||||||
.endproc
|
.endproc
|
||||||
|
|
||||||
; Error entry, file is not open
|
|
||||||
done_pfs:
|
done_pfs:
|
||||||
ldx #10
|
ldx #.sizeof(flags)
|
||||||
@L2: ldy flags-1,x ; file open?
|
@L2: ldy flags - 1,x ; file open?
|
||||||
beq @L1
|
beq @L1
|
||||||
txa
|
txa
|
||||||
jsr _pfs_close
|
jsr close1
|
||||||
@L1: dex
|
@L1: dex
|
||||||
bne @L2
|
bne @L2
|
||||||
rts
|
rts
|
||||||
|
|
||||||
error5: jsr CLRCHN ; clrchn
|
error5: jsr CLRCHN
|
||||||
|
|
||||||
error2: ldx #255
|
; Error entry, file is not open
|
||||||
|
error2: ldx #>-1
|
||||||
txa
|
txa
|
||||||
rts
|
rts
|
||||||
|
|
||||||
_pfs_close:
|
_pfs_close:
|
||||||
pha
|
cmp #.sizeof(flags) + 1
|
||||||
jsr CLOSE ;close
|
bcs close0 ; don't close if not valid file number
|
||||||
|
close1: pha
|
||||||
|
jsr CLOSE
|
||||||
pla
|
pla
|
||||||
tax
|
tax
|
||||||
lda #0
|
lda #$00
|
||||||
sta flags-1,x
|
sta flags - 1,x
|
||||||
rts
|
close0: rts ; .X = file number
|
||||||
|
|
||||||
.proc pfs_rwcommon
|
.proc pfs_rwcommon
|
||||||
eor #$FF
|
eor #$FF
|
||||||
|
@ -366,70 +403,56 @@ _pfs_close:
|
||||||
|
|
||||||
jsr popax ; get the handle
|
jsr popax ; get the handle
|
||||||
sta LF
|
sta LF
|
||||||
lda #0
|
lda #$00
|
||||||
beq pfs_rwsetflags
|
; beq pfs_rwsetflags ; (fall through)
|
||||||
.endproc
|
.endproc
|
||||||
|
|
||||||
.if F_IDE64
|
|
||||||
.proc ide64_rwprepare
|
|
||||||
sec
|
|
||||||
lda ptr1+1
|
|
||||||
eor #255
|
|
||||||
beq small ; too small, not worth it
|
|
||||||
tay
|
|
||||||
lda ptr1 ; setup registers
|
|
||||||
eor #255
|
|
||||||
tax
|
|
||||||
lda $031B
|
|
||||||
eor #$DE
|
|
||||||
bne noide ; open vector set?
|
|
||||||
lda $DE60
|
|
||||||
eor #$49
|
|
||||||
bne noide ; check identification
|
|
||||||
lda $DE61
|
|
||||||
eor #$44
|
|
||||||
bne noide
|
|
||||||
lda $DE62
|
|
||||||
eor #$45
|
|
||||||
bne noide
|
|
||||||
clc
|
|
||||||
lda #ptr2
|
|
||||||
small: rts
|
|
||||||
|
|
||||||
noide: lda #F_NBLK
|
|
||||||
bne pfs_rwsetflags
|
|
||||||
.endproc
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.proc pfs_rwsetflags
|
.proc pfs_rwsetflags
|
||||||
ldx LF
|
ldx LF
|
||||||
ora flags-1,x
|
ora flags - 1,x
|
||||||
sta flags-1,x
|
sta flags - 1,x
|
||||||
rts
|
rts
|
||||||
.endproc
|
.endproc
|
||||||
|
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
|
.proc ide64_rwprepare
|
||||||
|
sec ; assume it won't use IDEDOS
|
||||||
|
lda ptr1+1
|
||||||
|
eor #$FF ; convert -count-1 back to count
|
||||||
|
beq small ; too small, not worth it
|
||||||
|
tay
|
||||||
|
lda ptr1 ; set up registers
|
||||||
|
eor #$FF
|
||||||
|
tax
|
||||||
|
lda OPNVec+1
|
||||||
|
eor #>$DE00
|
||||||
|
bne noide ; is OPEN vector set to IDEDOS?
|
||||||
|
lda $DE60
|
||||||
|
eor #'i'
|
||||||
|
bne noide ; check identification
|
||||||
|
lda $DE61
|
||||||
|
eor #'d'
|
||||||
|
bne noide
|
||||||
|
lda $DE62
|
||||||
|
eor #'e'
|
||||||
|
bne noide
|
||||||
|
clc ; it will use IDEDOS
|
||||||
|
lda #ptr2
|
||||||
|
small: rts
|
||||||
|
|
||||||
|
noide: lda #F_NBLK
|
||||||
|
bne pfs_rwsetflags
|
||||||
|
.endproc
|
||||||
|
|
||||||
.proc ide64_rwfinish
|
.proc ide64_rwfinish
|
||||||
txa
|
txa ; push .YX
|
||||||
pha
|
pha
|
||||||
tya
|
tya
|
||||||
pha
|
pha
|
||||||
jsr CLRCHN
|
jsr CLRCHN
|
||||||
pla
|
pla ; pull .XA
|
||||||
tax
|
|
||||||
pla
|
|
||||||
rts
|
|
||||||
.endproc
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.proc pfs_rwcommonend
|
|
||||||
lda ptr2
|
|
||||||
sec
|
|
||||||
sbc ptr3
|
|
||||||
pha
|
|
||||||
lda ptr2+1
|
|
||||||
sbc ptr3+1
|
|
||||||
tax
|
tax
|
||||||
pla
|
pla
|
||||||
rts
|
rts
|
||||||
.endproc
|
.endproc
|
||||||
|
.endif
|
||||||
|
|
59
platform/c128/lib/pfs_remove.S
Normal file
59
platform/c128/lib/pfs_remove.S
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
;
|
||||||
|
; Copyright (c) 2016, Greg King
|
||||||
|
; All rights reserved.
|
||||||
|
;
|
||||||
|
; Redistribution and use in source and binary forms, with or without
|
||||||
|
; modification, are permitted provided that the following conditions
|
||||||
|
; are met:
|
||||||
|
; 1. Redistributions of source code must retain the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer.
|
||||||
|
; 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer in the
|
||||||
|
; documentation and/or other materials provided with the distribution.
|
||||||
|
; 3. Neither the name of the author nor the names of contributors
|
||||||
|
; may be used to endorse or promote products derived from this software
|
||||||
|
; without specific prior written permission.
|
||||||
|
;
|
||||||
|
; THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS"; AND,
|
||||||
|
; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||||
|
; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||||
|
; OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||||
|
; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||||
|
; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
|
; SUCH DAMAGE.
|
||||||
|
;
|
||||||
|
; This file is part of the Contiki operating system.
|
||||||
|
;
|
||||||
|
; Author: Greg King <gregdk@users.sf.net>
|
||||||
|
;
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.importzp ptr2
|
||||||
|
.import addysp
|
||||||
|
.import pfs_makename, pfs_scratch
|
||||||
|
|
||||||
|
.export _pfs_remove
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
MAXLEN = 80 ; max. filename length
|
||||||
|
|
||||||
|
FNL := $B7 ; filename length
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.proc _pfs_remove
|
||||||
|
asl ptr2 ; force pfs_makename to format for pfs_scratch
|
||||||
|
jsr pfs_makename
|
||||||
|
ldx FNL
|
||||||
|
beq error ; no name
|
||||||
|
|
||||||
|
jsr pfs_scratch
|
||||||
|
ldx #>$0000
|
||||||
|
bcs error
|
||||||
|
ret: txa
|
||||||
|
ldy #MAXLEN + 8 ; free filename space
|
||||||
|
jmp addysp
|
||||||
|
|
||||||
|
error: dex ;(ldx #>-1)
|
||||||
|
bne ret
|
||||||
|
.endproc
|
46
platform/c128/lib/pfs_seek.S
Normal file
46
platform/c128/lib/pfs_seek.S
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
;
|
||||||
|
; Copyright (c) 2016, Greg King
|
||||||
|
; All rights reserved.
|
||||||
|
;
|
||||||
|
; Redistribution and use in source and binary forms, with or without
|
||||||
|
; modification, are permitted provided that the following conditions
|
||||||
|
; are met:
|
||||||
|
; 1. Redistributions of source code must retain the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer.
|
||||||
|
; 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer in the
|
||||||
|
; documentation and/or other materials provided with the distribution.
|
||||||
|
; 3. Neither the name of the author nor the names of contributors
|
||||||
|
; may be used to endorse or promote products derived from this software
|
||||||
|
; without specific prior written permission.
|
||||||
|
;
|
||||||
|
; THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS"; AND,
|
||||||
|
; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||||
|
; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||||
|
; OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||||
|
; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||||
|
; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
|
; SUCH DAMAGE.
|
||||||
|
;
|
||||||
|
; This file is part of the Contiki operating system.
|
||||||
|
;
|
||||||
|
; Author: Greg King <gregdk@users.sf.net>
|
||||||
|
;
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.importzp sp, sreg, ptr1, ptr2, ptr3
|
||||||
|
.import popax, incsp6
|
||||||
|
.import cmdc, flags
|
||||||
|
|
||||||
|
.export _pfs_seek
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.proc _pfs_seek
|
||||||
|
lda #<-1 ; seek not implemented
|
||||||
|
tax
|
||||||
|
stx sreg ; return long data type
|
||||||
|
stx sreg+1
|
||||||
|
jmp incsp6 ; drop int and long arguments from stack
|
||||||
|
.endproc
|
|
@ -31,27 +31,33 @@
|
||||||
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
||||||
;
|
;
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.define F_IDE64 0 ; support IDE64, 100 byte only
|
.define F_IDE64 0 ; c128 doesn't have IDE64
|
||||||
|
|
||||||
.importzp ptr1, ptr2
|
.importzp ptr1, ptr2
|
||||||
.import pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
.import pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
.import ide64_rwprepare, ide64_rwfinish
|
.import ide64_rwprepare, ide64_rwfinish
|
||||||
.endif
|
.endif
|
||||||
.export _pfs_write
|
|
||||||
|
.export _pfs_write
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
F_NBLK = $40
|
F_NBLK = %01000000 ;block read/write not available
|
||||||
ST = $90 ;status
|
|
||||||
CHKOUT = $FFC9
|
ST := $90 ;status
|
||||||
CLRCHN = $FFCC
|
|
||||||
CHROUT = $FFD2
|
; IDEDOS function
|
||||||
WRITE = $DEF1
|
WRITE := $DEF1
|
||||||
|
|
||||||
|
; Kernal functions
|
||||||
|
CHKOUT := $FFC9
|
||||||
|
CLRCHN := $FFCC
|
||||||
|
CHROUT := $FFD2
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.code
|
.code
|
||||||
|
|
||||||
error5: jsr CLRCHN ; clrchn
|
error5: jsr CLRCHN
|
||||||
|
|
||||||
error2: ldx #255
|
error2: ldx #>-1
|
||||||
txa
|
txa
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
@ -59,8 +65,8 @@ error2: ldx #255
|
||||||
jsr pfs_rwcommon ; pop params, check handle
|
jsr pfs_rwcommon ; pop params, check handle
|
||||||
beq error2 ; not open
|
beq error2 ; not open
|
||||||
|
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
asl
|
asl a
|
||||||
bmi nblk ; no block operation
|
bmi nblk ; no block operation
|
||||||
|
|
||||||
jsr CHKOUT
|
jsr CHKOUT
|
||||||
|
@ -70,7 +76,7 @@ error2: ldx #255
|
||||||
jsr ide64_rwprepare
|
jsr ide64_rwprepare
|
||||||
bcs norm
|
bcs norm
|
||||||
|
|
||||||
; write
|
; do a block write
|
||||||
jsr WRITE
|
jsr WRITE
|
||||||
bcs nosup
|
bcs nosup
|
||||||
jmp ide64_rwfinish
|
jmp ide64_rwfinish
|
||||||
|
@ -98,10 +104,9 @@ norm: ldy #0
|
||||||
lda ST
|
lda ST
|
||||||
beq @L3
|
beq @L3
|
||||||
bne error5 ; bail out on errors
|
bne error5 ; bail out on errors
|
||||||
@L2:
|
|
||||||
|
|
||||||
; Wrote all chars, close the output channel
|
; Wrote all chars.; cancel the output channel
|
||||||
jsr CLRCHN
|
@L2: jsr CLRCHN
|
||||||
|
|
||||||
; Return the number of chars written
|
; Return the number of chars written
|
||||||
jmp pfs_rwcommonend
|
jmp pfs_rwcommonend
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
# Author: Oliver Schmidt <ol.sc@web.de>
|
# Author: Oliver Schmidt <ol.sc@web.de>
|
||||||
#
|
#
|
||||||
|
|
||||||
CONTIKI_TARGET_SOURCEFILES += lseek.c pfs.S pfs_write.S
|
CONTIKI_TARGET_SOURCEFILES += lseek.c pfs.S pfs_remove.S pfs_seek.S pfs_write.S
|
||||||
|
|
||||||
CONTIKI_CPU = $(CONTIKI)/cpu/6502
|
CONTIKI_CPU = $(CONTIKI)/cpu/6502
|
||||||
include $(CONTIKI_CPU)/Makefile.6502
|
include $(CONTIKI_CPU)/Makefile.6502
|
||||||
|
|
|
@ -29,99 +29,212 @@
|
||||||
; This file is part of the Contiki operating system.
|
; This file is part of the Contiki operating system.
|
||||||
;
|
;
|
||||||
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
||||||
|
; Author: Greg King <gregdk@users.sf.net>
|
||||||
;
|
;
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.define F_IDE64 1 ; support IDE64, 100 byte only
|
.define F_IDE64 1 ; support IDE64, >= $0100 bytes only
|
||||||
|
|
||||||
.constructor init_pfs
|
.constructor init_pfs
|
||||||
.destructor done_pfs
|
.destructor done_pfs
|
||||||
.importzp ptr1, ptr2, ptr3, sp
|
.importzp sp, ptr1, ptr2, ptr3
|
||||||
.import curunit, __filetype, popax, addysp, subysp
|
.import curunit, __filetype, popax, addysp, subysp
|
||||||
.export pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
.export pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
.export ide64_rwprepare, ide64_rwfinish
|
.export ide64_rwprepare, ide64_rwfinish
|
||||||
.endif
|
.endif
|
||||||
.export _pfs_open, _pfs_read, _pfs_close
|
.export cmdc, flags
|
||||||
|
.export pfs_makename, pfs_scratch
|
||||||
|
|
||||||
|
.export _pfs_open, _pfs_read, _pfs_close
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
F_EOF = $80
|
MAXLEN = 80 ;maximum filename length
|
||||||
F_NBLK = $40
|
|
||||||
F_OPEN = $20
|
; Flag bits
|
||||||
F_MAXLEN = 80 ;max filename length
|
F_EOF = %10000000 ;end of file
|
||||||
ST = $90 ;status
|
F_NBLK = %01000000 ;block read/write not available
|
||||||
FN = $BB ;filename
|
F_OPEN = %00100000
|
||||||
FNL = $B7 ;filenamelength
|
|
||||||
LF = $B8 ;logical file number
|
; Kernal variables
|
||||||
SA = $B9 ;secondary address
|
ST := $90 ;status
|
||||||
OPEN = $FFC0
|
FN := $BB ;filename
|
||||||
CLOSE = $FFC3
|
FNL := $B7 ;filename length
|
||||||
CHKIN = $FFC6
|
LF := $B8 ;logical file number
|
||||||
CHKOUT = $FFC9
|
|
||||||
CLRCHN = $FFCC
|
OPNVec := $031A ;address vector to OPEN function's code
|
||||||
CHRIN = $FFCF
|
|
||||||
CHROUT = $FFD2
|
; IDEDOS function
|
||||||
SETLFS = $FFBA
|
READ := $DEF4
|
||||||
SETNAM = $FFBD
|
|
||||||
CLALL = $FFE7
|
; Kernal functions
|
||||||
WRITE = $DEF1
|
SETLFS := $FFBA
|
||||||
READ = $DEF4
|
SETNAM := $FFBD
|
||||||
|
OPEN := $FFC0
|
||||||
|
CLOSE := $FFC3
|
||||||
|
CHKIN := $FFC6
|
||||||
|
CHKOUT := $FFC9
|
||||||
|
CLRCHN := $FFCC
|
||||||
|
CHRIN := $FFCF
|
||||||
|
CHROUT := $FFD2
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.data
|
.data
|
||||||
|
|
||||||
illchr: .byte $3A, $2A, $3F, $3D ;illegal chars
|
; illchr and sw must stay together because the comma, also, is illegal in names.
|
||||||
pw: .byte $2C, $50, $2C, $57 ;,p,w
|
illchr: .byte "*?:=" ;illegal chars
|
||||||
|
sw: .byte ",s,w"
|
||||||
cmdc: .byte 0
|
cmdc: .byte 0
|
||||||
flags: .res 10
|
flags: .res 10 ;(Kernal allows only ten open files)
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.segment "ONCE"
|
.segment "ONCE"
|
||||||
|
|
||||||
init_pfs:
|
init_pfs:
|
||||||
ldy #F_MAXLEN+8
|
ldy #MAXLEN + 8
|
||||||
jsr subysp ;allocate
|
jsr subysp ;allocate because open2 will free it
|
||||||
lda #0
|
lda #0 ;no name, file number 1
|
||||||
sta FNL ;no name
|
sta FNL
|
||||||
ldy #15-1
|
ldy #15 - 1 ;secondary address 15
|
||||||
jsr open2 ;open command channel
|
jsr open2 ;open command channel
|
||||||
sta cmdc
|
sta cmdc
|
||||||
rts
|
rts
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.code
|
.code
|
||||||
|
|
||||||
error3: jmp error
|
|
||||||
|
|
||||||
_pfs_open:
|
_pfs_open:
|
||||||
sta ptr2
|
sta ptr2 ;save open-mode flags
|
||||||
; Pop and store name
|
|
||||||
|
; Get and store name
|
||||||
jsr popax
|
jsr popax
|
||||||
|
jsr pfs_makename
|
||||||
|
lda FNL
|
||||||
|
beq error ;must have a filename
|
||||||
|
|
||||||
|
lda #2 - 1 ;file number
|
||||||
|
tay ;secondary address
|
||||||
|
open2: sta ptr2
|
||||||
|
sty ptr2 + 1
|
||||||
|
|
||||||
|
next: inc ptr2 ;next file number
|
||||||
|
ldx ptr2 ;file number
|
||||||
|
cpx #.sizeof(flags) + 1
|
||||||
|
bcs error ;no more files
|
||||||
|
lda flags - 1,x
|
||||||
|
bne next ;already used
|
||||||
|
lda ptr2 + 1
|
||||||
|
bne nextsa
|
||||||
|
inx
|
||||||
|
stx ptr2 + 1
|
||||||
|
nextsa: inc ptr2 + 1 ;next channel
|
||||||
|
retr: lda ptr2 ;file number
|
||||||
|
ldx curunit
|
||||||
|
ldy ptr2 + 1 ;secondary address (channel number)
|
||||||
|
jsr SETLFS
|
||||||
|
jsr OPEN ;open a pair of files (in computer and drive)
|
||||||
|
bcs oerr ;branch if could not open computer file
|
||||||
|
ldx cmdc
|
||||||
|
beq opok ;branch if error channel just was openned
|
||||||
|
jsr CHKIN
|
||||||
|
bcs error
|
||||||
|
jsr CHRIN
|
||||||
|
pha ;first digit of error code
|
||||||
|
jsr CHRIN
|
||||||
|
sta ptr1 ;second digit
|
||||||
|
@L4: jsr CHRIN ;flush status message
|
||||||
|
lda ST
|
||||||
|
beq @L4
|
||||||
|
jsr CLRCHN
|
||||||
|
pla
|
||||||
|
cmp #'2'
|
||||||
|
bcc opok ;no serious error
|
||||||
|
pha
|
||||||
|
lda ptr2
|
||||||
|
jsr CLOSE ;close computer file
|
||||||
|
pla
|
||||||
|
ldx ptr1
|
||||||
|
cmp #'7' ;no channel?
|
||||||
|
bne nnoc
|
||||||
|
cpx #'0'
|
||||||
|
bne error ;not "no channel"
|
||||||
|
lda ptr2 + 1
|
||||||
|
cmp #14
|
||||||
|
bcc nextsa ;try next channel
|
||||||
|
bcs error ;give up
|
||||||
|
|
||||||
|
opok: ldx ptr2
|
||||||
|
lda #F_OPEN
|
||||||
|
sta flags - 1,x
|
||||||
|
txa ;OK, return file number
|
||||||
|
ret0: ldx #>$0000
|
||||||
|
ret: ldy #MAXLEN + 8 ;free filename space
|
||||||
|
jmp addysp
|
||||||
|
|
||||||
|
oerr: dec ptr2 + 1
|
||||||
|
cmp #2 ;already open,
|
||||||
|
beq next ;retry with next
|
||||||
|
|
||||||
|
error: lda #<-1
|
||||||
|
tax ;failed
|
||||||
|
bne ret
|
||||||
|
|
||||||
|
nnoc: inc ptr3
|
||||||
|
bne error ;no retry
|
||||||
|
cmp #'6'
|
||||||
|
bne error ;not "file exists"
|
||||||
|
cpx #'3'
|
||||||
|
bne error
|
||||||
|
jsr pfs_scratch
|
||||||
|
bcc retr
|
||||||
|
bcs error ;branch always
|
||||||
|
|
||||||
|
pfs_scratch:
|
||||||
|
ldx cmdc
|
||||||
|
jsr CHKOUT
|
||||||
|
bcs @L5
|
||||||
|
ldy #1
|
||||||
|
lda #'s' ;scratch
|
||||||
|
@L4: jsr CHROUT
|
||||||
|
lda (FN),y
|
||||||
|
iny
|
||||||
|
cmp #','
|
||||||
|
bne @L4
|
||||||
|
lda #$0D ;carriage return
|
||||||
|
jsr CHROUT
|
||||||
|
jsr CLRCHN
|
||||||
|
clc ;carry = 0: OK
|
||||||
|
@L5: rts ;carry = 1: error
|
||||||
|
|
||||||
|
pfs_makename:
|
||||||
sta FN
|
sta FN
|
||||||
stx FN+1 ;filename (kernal)
|
stx FN+1 ;Kernal filename pointer
|
||||||
ldy #F_MAXLEN+8
|
ldy #MAXLEN + 8
|
||||||
jsr subysp ;allocate name
|
jsr subysp ;allocate name space
|
||||||
ldy #255
|
|
||||||
|
; Validate the name; and, find its length
|
||||||
|
ldy #<-1
|
||||||
sty ptr3
|
sty ptr3
|
||||||
sty ptr1
|
sty ptr1
|
||||||
@L10: iny
|
@L10: iny
|
||||||
cpy #F_MAXLEN
|
cpy #MAXLEN
|
||||||
bcs error3 ;too long...
|
bcs badchr ;too long
|
||||||
ldx #4 ;4+1 (comma)
|
lda (FN),y
|
||||||
|
ldx #.sizeof(illchr); 4 + 1 (includes comma)
|
||||||
@L12: cmp illchr,x
|
@L12: cmp illchr,x
|
||||||
beq error3 ;illegal char?
|
beq badchr ;illegal char
|
||||||
dex
|
dex
|
||||||
bpl @L12
|
bpl @L12
|
||||||
cmp #$2F
|
cmp #'/'
|
||||||
bne @L11
|
bne @L11
|
||||||
sty ptr1 ;last slash
|
sty ptr1 ;last slash
|
||||||
@L11: lda (FN),y
|
@L11: tax ;test for '\0'
|
||||||
bne @L10
|
bne @L10
|
||||||
sty FNL
|
cpy #0
|
||||||
|
beq badchr ;no name
|
||||||
|
|
||||||
tay
|
tay ;zero index reg.
|
||||||
tax
|
lda #'0' ;drive 0 or current partition
|
||||||
lda #$30 ;this partition
|
|
||||||
sta (sp),y
|
sta (sp),y
|
||||||
iny
|
iny
|
||||||
inc ptr1
|
inc ptr1
|
||||||
beq nopath
|
beq nopath
|
||||||
lda #$2F
|
lda #'/'
|
||||||
@L13: sta (sp),y
|
@L13: sta (sp),y
|
||||||
iny
|
iny
|
||||||
lda (FN,x)
|
lda (FN,x)
|
||||||
|
@ -130,158 +243,67 @@ _pfs_open:
|
||||||
inc FN+1
|
inc FN+1
|
||||||
@L14: cpy ptr1
|
@L14: cpy ptr1
|
||||||
bcc @L13
|
bcc @L13
|
||||||
lda #$2F
|
;lda #'/' ; (.A already has a slash)
|
||||||
sta (sp),y
|
sta (sp),y
|
||||||
iny
|
iny
|
||||||
nopath: lda #$3A
|
nopath: lda #':'
|
||||||
@L16: sta (sp),y
|
@L16: sta (sp),y
|
||||||
iny
|
iny
|
||||||
lda (FN,x)
|
lda (FN,x)
|
||||||
inc FN
|
inc FN
|
||||||
bne @L15
|
bne @L15
|
||||||
inc FN+1
|
inc FN+1
|
||||||
@L15: ora #0
|
@L15: ora #$00 ;test for '\0'
|
||||||
bne @L16
|
bne @L16
|
||||||
lsr ptr2
|
lsr ptr2
|
||||||
bcs ro ;read only
|
bcs ro ;read-only (read-write not supported)
|
||||||
lda __filetype
|
lda __filetype
|
||||||
sta pw+1 ;set filetype
|
sta sw + 1 ;set filetype
|
||||||
ldx #252
|
lsr ptr2
|
||||||
@L20: lda pw-252,x
|
lda #'w' ;write-only
|
||||||
sta (sp),y ;write
|
lsr ptr2
|
||||||
|
bcc write
|
||||||
|
lda #'a' ;append
|
||||||
|
write: sta sw + 3 ;set mode
|
||||||
|
ldx #$0100 - .sizeof(sw)
|
||||||
|
@L20: lda sw - ($0100 - .sizeof(sw)),x
|
||||||
|
sta (sp),y
|
||||||
iny
|
iny
|
||||||
inx
|
inx
|
||||||
bne @L20
|
bne @L20
|
||||||
ro: tya ;name length (kernal)
|
ro: tya ;pathname length
|
||||||
ldx sp
|
ldx sp
|
||||||
ldy sp+1
|
ldy sp+1
|
||||||
jsr SETNAM
|
namset: jmp SETNAM
|
||||||
|
|
||||||
lda #0 ;file number
|
badchr: lda #0
|
||||||
tay ;secondary address
|
beq namset
|
||||||
open2: sta ptr2
|
|
||||||
sty ptr2+1
|
|
||||||
|
|
||||||
next: inc ptr2 ;next file number
|
|
||||||
ldx ptr2 ;file number
|
|
||||||
cpx #11
|
|
||||||
bcs error ;no more files
|
|
||||||
lda flags-1,x
|
|
||||||
bne next ;already used
|
|
||||||
lda ptr2+1
|
|
||||||
bne nextsa
|
|
||||||
inx
|
|
||||||
stx ptr2+1
|
|
||||||
nextsa: inc ptr2+1 ;next channel
|
|
||||||
retr: lda ptr2 ;file number
|
|
||||||
ldx curunit
|
|
||||||
ldy ptr2+1 ;secondary address
|
|
||||||
jsr SETLFS
|
|
||||||
jsr OPEN ;open
|
|
||||||
bcs oerr
|
|
||||||
ldx cmdc
|
|
||||||
beq opok ;error channel open
|
|
||||||
jsr CHKIN
|
|
||||||
bcs error
|
|
||||||
jsr CHRIN
|
|
||||||
pha
|
|
||||||
jsr CHRIN
|
|
||||||
sta ptr1
|
|
||||||
@L4: jsr CHRIN
|
|
||||||
lda ST
|
|
||||||
beq @L4
|
|
||||||
jsr CLRCHN
|
|
||||||
pla
|
|
||||||
tax
|
|
||||||
lsr
|
|
||||||
cmp #$18 ;no serious error
|
|
||||||
beq opok
|
|
||||||
txa
|
|
||||||
pha
|
|
||||||
lda ptr2
|
|
||||||
jsr CLOSE ;close
|
|
||||||
pla
|
|
||||||
ldx ptr1
|
|
||||||
cmp #$37 ;no channel?
|
|
||||||
bne nnoc
|
|
||||||
cpx #$30
|
|
||||||
bne error ;not no channel
|
|
||||||
lda ptr2+1
|
|
||||||
cmp #14
|
|
||||||
bcc nextsa ;try next channel
|
|
||||||
bcs error ;give up
|
|
||||||
|
|
||||||
opok: ldx ptr2
|
|
||||||
lda #F_OPEN
|
|
||||||
sta flags-1,x
|
|
||||||
txa ;ok, return file number
|
|
||||||
ldx #0
|
|
||||||
ret: ldy #F_MAXLEN+8 ; free filename
|
|
||||||
jmp addysp
|
|
||||||
|
|
||||||
oerr: dec ptr2+1
|
|
||||||
cmp #2 ;already open,
|
|
||||||
beq next ;retry with next
|
|
||||||
|
|
||||||
error: lda #$FF
|
|
||||||
tax ;failed
|
|
||||||
bne ret
|
|
||||||
|
|
||||||
nnoc: inc ptr3
|
|
||||||
bne error ;no retry
|
|
||||||
cmp #$36
|
|
||||||
bne error ;no exists
|
|
||||||
cpx #$33
|
|
||||||
bne error
|
|
||||||
ldx cmdc
|
|
||||||
jsr CHKOUT
|
|
||||||
bcs error
|
|
||||||
lda FNL
|
|
||||||
sec
|
|
||||||
sbc #5
|
|
||||||
tax
|
|
||||||
lda #$53 ;scratch
|
|
||||||
jsr CHROUT
|
|
||||||
ldy #1
|
|
||||||
@L4: lda (FN),y
|
|
||||||
iny
|
|
||||||
jsr CHROUT
|
|
||||||
dex
|
|
||||||
bne @L4
|
|
||||||
lda #$3D
|
|
||||||
jsr CHROUT
|
|
||||||
iny
|
|
||||||
lda (FN),y
|
|
||||||
jsr CHROUT
|
|
||||||
lda #$0d
|
|
||||||
jsr CHROUT
|
|
||||||
jsr CLRCHN
|
|
||||||
jmp retr
|
|
||||||
|
|
||||||
.proc _pfs_read
|
.proc _pfs_read
|
||||||
jsr pfs_rwcommon ; pop params, check handle
|
jsr pfs_rwcommon ; pop params, check handle
|
||||||
beq error2 ; not open
|
beq error2 ; not open
|
||||||
|
|
||||||
bmi eof
|
bmi eof
|
||||||
.if F_IDE64
|
|
||||||
asl
|
.if F_IDE64
|
||||||
|
asl a
|
||||||
bmi nblk ; no block operation
|
bmi nblk ; no block operation
|
||||||
|
|
||||||
jsr CHKIN
|
jsr CHKIN
|
||||||
bcs error2
|
bcs error2
|
||||||
|
|
||||||
; check support
|
; check support
|
||||||
jsr ide64_rwprepare
|
jsr ide64_rwprepare
|
||||||
bcs norm
|
bcs norm
|
||||||
|
|
||||||
; read
|
; do a block read
|
||||||
jsr READ
|
jsr READ
|
||||||
bcs nosup
|
bcs nosup
|
||||||
jmp ide64_rwfinish
|
jmp ide64_rwfinish
|
||||||
|
|
||||||
nosup: lda #F_NBLK
|
nosup: lda #F_NBLK
|
||||||
jsr pfs_rwsetflags
|
jsr pfs_rwsetflags
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
; Valid lfn. Make it the input file
|
; Valid lfn. Make it the input file
|
||||||
nblk: jsr CHKIN
|
nblk: jsr CHKIN
|
||||||
|
@ -292,15 +314,15 @@ norm: ldy #0
|
||||||
@L3: inc ptr1
|
@L3: inc ptr1
|
||||||
bne @L0
|
bne @L0
|
||||||
inc ptr1+1
|
inc ptr1+1
|
||||||
beq done ; branch always
|
beq done
|
||||||
|
|
||||||
; Read the next byte
|
; Read the next byte
|
||||||
@L0: jsr CHRIN
|
@L0: jsr CHRIN
|
||||||
tax ; save the input byte
|
tax ; save the input byte
|
||||||
|
|
||||||
lda ST ; read the IEEE status
|
lda ST ; read the file status
|
||||||
cmp #1 ; save it
|
cmp #$01 ; save it
|
||||||
and #%10111111 ; check anything but the EOI bit
|
and #%10111111 ; check anything but the EOF bit
|
||||||
bne error5 ; assume device not present
|
bne error5 ; assume device not present
|
||||||
|
|
||||||
; Store the byte just read
|
; Store the byte just read
|
||||||
|
@ -310,45 +332,60 @@ norm: ldy #0
|
||||||
bne @L1
|
bne @L1
|
||||||
inc ptr2+1 ; *buf++ = A;
|
inc ptr2+1 ; *buf++ = A;
|
||||||
|
|
||||||
; Get the status again and check the EOI bit
|
; Get the status again; and, check the EOF bit
|
||||||
@L1: bcc @L3 ; loop if no end of file
|
@L1: bcc @L3 ; loop if not end of file
|
||||||
|
|
||||||
; Set the EOI flag and bail out
|
; Set the EOF flag; and, bail out
|
||||||
lda #F_EOF
|
lda #F_EOF
|
||||||
jsr pfs_rwsetflags
|
jsr pfs_rwsetflags
|
||||||
|
|
||||||
; Read done, close the input channel
|
; Read done; cancel the input channel
|
||||||
done: jsr CLRCHN ; clrchn
|
done: jsr CLRCHN
|
||||||
|
|
||||||
; Return the number of chars read
|
; Return the number of chars read
|
||||||
eof: jmp pfs_rwcommonend
|
eof:
|
||||||
|
; jmp pfs_rwcommonend ; (fall through)
|
||||||
|
.endproc
|
||||||
|
|
||||||
|
.proc pfs_rwcommonend
|
||||||
|
lda ptr2
|
||||||
|
sec
|
||||||
|
sbc ptr3
|
||||||
|
pha
|
||||||
|
lda ptr2+1
|
||||||
|
sbc ptr3+1
|
||||||
|
tax
|
||||||
|
pla
|
||||||
|
rts
|
||||||
.endproc
|
.endproc
|
||||||
|
|
||||||
; Error entry, file is not open
|
|
||||||
done_pfs:
|
done_pfs:
|
||||||
ldx #10
|
ldx #.sizeof(flags)
|
||||||
@L2: ldy flags-1,x ; file open?
|
@L2: ldy flags - 1,x ; file open?
|
||||||
beq @L1
|
beq @L1
|
||||||
txa
|
txa
|
||||||
jsr _pfs_close
|
jsr close1
|
||||||
@L1: dex
|
@L1: dex
|
||||||
bne @L2
|
bne @L2
|
||||||
rts
|
rts
|
||||||
|
|
||||||
error5: jsr CLRCHN ; clrchn
|
error5: jsr CLRCHN
|
||||||
|
|
||||||
error2: ldx #255
|
; Error entry, file is not open
|
||||||
|
error2: ldx #>-1
|
||||||
txa
|
txa
|
||||||
rts
|
rts
|
||||||
|
|
||||||
_pfs_close:
|
_pfs_close:
|
||||||
pha
|
cmp #.sizeof(flags) + 1
|
||||||
jsr CLOSE ;close
|
bcs close0 ; don't close if not valid file number
|
||||||
|
close1: pha
|
||||||
|
jsr CLOSE
|
||||||
pla
|
pla
|
||||||
tax
|
tax
|
||||||
lda #0
|
lda #$00
|
||||||
sta flags-1,x
|
sta flags - 1,x
|
||||||
rts
|
close0: rts ; .X = file number
|
||||||
|
|
||||||
.proc pfs_rwcommon
|
.proc pfs_rwcommon
|
||||||
eor #$FF
|
eor #$FF
|
||||||
|
@ -366,70 +403,56 @@ _pfs_close:
|
||||||
|
|
||||||
jsr popax ; get the handle
|
jsr popax ; get the handle
|
||||||
sta LF
|
sta LF
|
||||||
lda #0
|
lda #$00
|
||||||
beq pfs_rwsetflags
|
; beq pfs_rwsetflags ; (fall through)
|
||||||
.endproc
|
.endproc
|
||||||
|
|
||||||
.if F_IDE64
|
|
||||||
.proc ide64_rwprepare
|
|
||||||
sec
|
|
||||||
lda ptr1+1
|
|
||||||
eor #255
|
|
||||||
beq small ; too small, not worth it
|
|
||||||
tay
|
|
||||||
lda ptr1 ; setup registers
|
|
||||||
eor #255
|
|
||||||
tax
|
|
||||||
lda $031B
|
|
||||||
eor #$DE
|
|
||||||
bne noide ; open vector set?
|
|
||||||
lda $DE60
|
|
||||||
eor #$49
|
|
||||||
bne noide ; check identification
|
|
||||||
lda $DE61
|
|
||||||
eor #$44
|
|
||||||
bne noide
|
|
||||||
lda $DE62
|
|
||||||
eor #$45
|
|
||||||
bne noide
|
|
||||||
clc
|
|
||||||
lda #ptr2
|
|
||||||
small: rts
|
|
||||||
|
|
||||||
noide: lda #F_NBLK
|
|
||||||
bne pfs_rwsetflags
|
|
||||||
.endproc
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.proc pfs_rwsetflags
|
.proc pfs_rwsetflags
|
||||||
ldx LF
|
ldx LF
|
||||||
ora flags-1,x
|
ora flags - 1,x
|
||||||
sta flags-1,x
|
sta flags - 1,x
|
||||||
rts
|
rts
|
||||||
.endproc
|
.endproc
|
||||||
|
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
|
.proc ide64_rwprepare
|
||||||
|
sec ; assume it won't use IDEDOS
|
||||||
|
lda ptr1+1
|
||||||
|
eor #$FF ; convert -count-1 back to count
|
||||||
|
beq small ; too small, not worth it
|
||||||
|
tay
|
||||||
|
lda ptr1 ; set up registers
|
||||||
|
eor #$FF
|
||||||
|
tax
|
||||||
|
lda OPNVec+1
|
||||||
|
eor #>$DE00
|
||||||
|
bne noide ; is OPEN vector set to IDEDOS?
|
||||||
|
lda $DE60
|
||||||
|
eor #'i'
|
||||||
|
bne noide ; check identification
|
||||||
|
lda $DE61
|
||||||
|
eor #'d'
|
||||||
|
bne noide
|
||||||
|
lda $DE62
|
||||||
|
eor #'e'
|
||||||
|
bne noide
|
||||||
|
clc ; it will use IDEDOS
|
||||||
|
lda #ptr2
|
||||||
|
small: rts
|
||||||
|
|
||||||
|
noide: lda #F_NBLK
|
||||||
|
bne pfs_rwsetflags
|
||||||
|
.endproc
|
||||||
|
|
||||||
.proc ide64_rwfinish
|
.proc ide64_rwfinish
|
||||||
txa
|
txa ; push .YX
|
||||||
pha
|
pha
|
||||||
tya
|
tya
|
||||||
pha
|
pha
|
||||||
jsr CLRCHN
|
jsr CLRCHN
|
||||||
pla
|
pla ; pull .XA
|
||||||
tax
|
|
||||||
pla
|
|
||||||
rts
|
|
||||||
.endproc
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.proc pfs_rwcommonend
|
|
||||||
lda ptr2
|
|
||||||
sec
|
|
||||||
sbc ptr3
|
|
||||||
pha
|
|
||||||
lda ptr2+1
|
|
||||||
sbc ptr3+1
|
|
||||||
tax
|
tax
|
||||||
pla
|
pla
|
||||||
rts
|
rts
|
||||||
.endproc
|
.endproc
|
||||||
|
.endif
|
||||||
|
|
59
platform/c64/lib/pfs_remove.S
Normal file
59
platform/c64/lib/pfs_remove.S
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
;
|
||||||
|
; Copyright (c) 2016, Greg King
|
||||||
|
; All rights reserved.
|
||||||
|
;
|
||||||
|
; Redistribution and use in source and binary forms, with or without
|
||||||
|
; modification, are permitted provided that the following conditions
|
||||||
|
; are met:
|
||||||
|
; 1. Redistributions of source code must retain the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer.
|
||||||
|
; 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer in the
|
||||||
|
; documentation and/or other materials provided with the distribution.
|
||||||
|
; 3. Neither the name of the author nor the names of contributors
|
||||||
|
; may be used to endorse or promote products derived from this software
|
||||||
|
; without specific prior written permission.
|
||||||
|
;
|
||||||
|
; THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS"; AND,
|
||||||
|
; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||||
|
; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||||
|
; OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||||
|
; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||||
|
; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
|
; SUCH DAMAGE.
|
||||||
|
;
|
||||||
|
; This file is part of the Contiki operating system.
|
||||||
|
;
|
||||||
|
; Author: Greg King <gregdk@users.sf.net>
|
||||||
|
;
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.importzp ptr2
|
||||||
|
.import addysp
|
||||||
|
.import pfs_makename, pfs_scratch
|
||||||
|
|
||||||
|
.export _pfs_remove
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
MAXLEN = 80 ; max. filename length
|
||||||
|
|
||||||
|
FNL := $B7 ; filename length
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.proc _pfs_remove
|
||||||
|
asl ptr2 ; force pfs_makename to format for pfs_scratch
|
||||||
|
jsr pfs_makename
|
||||||
|
ldx FNL
|
||||||
|
beq error ; no name
|
||||||
|
|
||||||
|
jsr pfs_scratch
|
||||||
|
ldx #>$0000
|
||||||
|
bcs error
|
||||||
|
ret: txa
|
||||||
|
ldy #MAXLEN + 8 ; free filename space
|
||||||
|
jmp addysp
|
||||||
|
|
||||||
|
error: dex ;(ldx #>-1)
|
||||||
|
bne ret
|
||||||
|
.endproc
|
46
platform/c64/lib/pfs_seek.S
Normal file
46
platform/c64/lib/pfs_seek.S
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
;
|
||||||
|
; Copyright (c) 2016, Greg King
|
||||||
|
; All rights reserved.
|
||||||
|
;
|
||||||
|
; Redistribution and use in source and binary forms, with or without
|
||||||
|
; modification, are permitted provided that the following conditions
|
||||||
|
; are met:
|
||||||
|
; 1. Redistributions of source code must retain the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer.
|
||||||
|
; 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
; notice, this list of conditions, and the following disclaimer in the
|
||||||
|
; documentation and/or other materials provided with the distribution.
|
||||||
|
; 3. Neither the name of the author nor the names of contributors
|
||||||
|
; may be used to endorse or promote products derived from this software
|
||||||
|
; without specific prior written permission.
|
||||||
|
;
|
||||||
|
; THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS"; AND,
|
||||||
|
; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||||
|
; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||||
|
; OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||||
|
; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||||
|
; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
|
; SUCH DAMAGE.
|
||||||
|
;
|
||||||
|
; This file is part of the Contiki operating system.
|
||||||
|
;
|
||||||
|
; Author: Greg King <gregdk@users.sf.net>
|
||||||
|
;
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.importzp sp, sreg, ptr1, ptr2, ptr3
|
||||||
|
.import popax, incsp6
|
||||||
|
.import cmdc, flags
|
||||||
|
|
||||||
|
.export _pfs_seek
|
||||||
|
;---------------------------------------------------------------------
|
||||||
|
.proc _pfs_seek
|
||||||
|
lda #<-1 ; seek not implemented
|
||||||
|
tax
|
||||||
|
stx sreg ; return long data type
|
||||||
|
stx sreg+1
|
||||||
|
jmp incsp6 ; drop int and long arguments from stack
|
||||||
|
.endproc
|
|
@ -31,27 +31,33 @@
|
||||||
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
; Author: Kajtar Zsolt <soci@c64.rulez.org>
|
||||||
;
|
;
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.define F_IDE64 1 ; support IDE64, 100 byte only
|
.define F_IDE64 1 ; support IDE64, >= $0100 bytes only
|
||||||
|
|
||||||
.importzp ptr1, ptr2
|
.importzp ptr1, ptr2
|
||||||
.import pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
.import pfs_rwcommon, pfs_rwsetflags, pfs_rwcommonend
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
.import ide64_rwprepare, ide64_rwfinish
|
.import ide64_rwprepare, ide64_rwfinish
|
||||||
.endif
|
.endif
|
||||||
.export _pfs_write
|
|
||||||
|
.export _pfs_write
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
F_NBLK = $40
|
F_NBLK = %01000000 ;block read/write not available
|
||||||
ST = $90 ;status
|
|
||||||
CHKOUT = $FFC9
|
ST := $90 ;status
|
||||||
CLRCHN = $FFCC
|
|
||||||
CHROUT = $FFD2
|
; IDEDOS function
|
||||||
WRITE = $DEF1
|
WRITE := $DEF1
|
||||||
|
|
||||||
|
; Kernal functions
|
||||||
|
CHKOUT := $FFC9
|
||||||
|
CLRCHN := $FFCC
|
||||||
|
CHROUT := $FFD2
|
||||||
;---------------------------------------------------------------------
|
;---------------------------------------------------------------------
|
||||||
.code
|
.code
|
||||||
|
|
||||||
error5: jsr CLRCHN ; clrchn
|
error5: jsr CLRCHN
|
||||||
|
|
||||||
error2: ldx #255
|
error2: ldx #>-1
|
||||||
txa
|
txa
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
@ -59,8 +65,8 @@ error2: ldx #255
|
||||||
jsr pfs_rwcommon ; pop params, check handle
|
jsr pfs_rwcommon ; pop params, check handle
|
||||||
beq error2 ; not open
|
beq error2 ; not open
|
||||||
|
|
||||||
.if F_IDE64
|
.if F_IDE64
|
||||||
asl
|
asl a
|
||||||
bmi nblk ; no block operation
|
bmi nblk ; no block operation
|
||||||
|
|
||||||
jsr CHKOUT
|
jsr CHKOUT
|
||||||
|
@ -70,7 +76,7 @@ error2: ldx #255
|
||||||
jsr ide64_rwprepare
|
jsr ide64_rwprepare
|
||||||
bcs norm
|
bcs norm
|
||||||
|
|
||||||
; write
|
; do a block write
|
||||||
jsr WRITE
|
jsr WRITE
|
||||||
bcs nosup
|
bcs nosup
|
||||||
jmp ide64_rwfinish
|
jmp ide64_rwfinish
|
||||||
|
@ -98,10 +104,9 @@ norm: ldy #0
|
||||||
lda ST
|
lda ST
|
||||||
beq @L3
|
beq @L3
|
||||||
bne error5 ; bail out on errors
|
bne error5 ; bail out on errors
|
||||||
@L2:
|
|
||||||
|
|
||||||
; Wrote all chars, close the output channel
|
; Wrote all chars.; cancel the output channel
|
||||||
jsr CLRCHN
|
@L2: jsr CLRCHN
|
||||||
|
|
||||||
; Return the number of chars written
|
; Return the number of chars written
|
||||||
jmp pfs_rwcommonend
|
jmp pfs_rwcommonend
|
||||||
|
|
Loading…
Reference in a new issue