1997-11-18 05:31:00 +00:00
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* The GNO Shell Project
|
|
|
|
*
|
|
|
|
* Developed by:
|
|
|
|
* Jawaid Bazyar
|
|
|
|
* Tim Meekins
|
|
|
|
*
|
1998-08-03 17:30:30 +00:00
|
|
|
* $Id: dir.asm,v 1.5 1998/08/03 17:30:27 tribby Exp $
|
1998-04-24 15:38:47 +00:00
|
|
|
*
|
1997-11-18 05:31:00 +00:00
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* DIR.ASM
|
|
|
|
* By Tim Meekins
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
* Modified by Dave Tribby for GNO 2.0.6
|
1997-11-18 05:31:00 +00:00
|
|
|
*
|
|
|
|
* Directory stack management
|
|
|
|
*
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
* Note: text set up for tabs at col 16, 22, 41, 49, 57, 65
|
|
|
|
* | | | | | |
|
|
|
|
* ^ ^ ^ ^ ^ ^
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Interfaces defined in this file:
|
|
|
|
*
|
|
|
|
* InitDStack
|
|
|
|
*
|
|
|
|
* dirs
|
|
|
|
*
|
|
|
|
* pushd
|
|
|
|
*
|
|
|
|
* popd
|
|
|
|
*
|
|
|
|
* path2tilde
|
|
|
|
*
|
1998-08-03 17:30:30 +00:00
|
|
|
* getpfxstr
|
|
|
|
*
|
1997-11-18 05:31:00 +00:00
|
|
|
**************************************************************************
|
|
|
|
|
1998-04-24 15:38:47 +00:00
|
|
|
mcopy /obj/gno/bin/gsh/dir.mac
|
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
dummydir start ; ends up in .root
|
1998-04-24 15:38:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
setcom 60
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
MAXD gequ 50
|
|
|
|
|
1998-04-24 15:38:47 +00:00
|
|
|
|
1997-11-18 05:31:00 +00:00
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Initialize directory stack
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
InitDStack START
|
|
|
|
|
|
|
|
using DirData
|
|
|
|
|
|
|
|
stz tods
|
|
|
|
stz dirstack
|
|
|
|
stz dirstack+2
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* DIRS: builtin command
|
|
|
|
* syntax: dirs [-l]
|
|
|
|
*
|
|
|
|
* display the directory stack
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
dirs START
|
|
|
|
|
|
|
|
using DirData
|
|
|
|
|
|
|
|
arg equ 0
|
|
|
|
space equ arg+4
|
|
|
|
|
|
|
|
subroutine (4:argv,2:argc),space
|
|
|
|
|
|
|
|
lda argc
|
|
|
|
dec a
|
|
|
|
beq showshort
|
|
|
|
dec a
|
|
|
|
bne using
|
|
|
|
ldy #4
|
|
|
|
lda [argv],y
|
|
|
|
sta arg
|
|
|
|
ldy #6
|
|
|
|
lda [argv],y
|
|
|
|
sta arg+2
|
|
|
|
lda [arg]
|
|
|
|
and #$FF
|
|
|
|
cmp #'-'
|
|
|
|
bne using
|
|
|
|
ldy #1
|
|
|
|
lda [arg],y
|
|
|
|
cmp #'l'
|
|
|
|
beq showlong
|
|
|
|
|
|
|
|
using ldx #^usingstr
|
|
|
|
lda #usingstr
|
|
|
|
jsr errputs
|
|
|
|
bra exit
|
|
|
|
|
|
|
|
showlong jsl dotods
|
|
|
|
pea 0
|
|
|
|
jsl showdir
|
|
|
|
bra exit
|
|
|
|
|
|
|
|
showshort jsl dotods
|
|
|
|
pea 1
|
|
|
|
jsl showdir
|
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
exit return 2:#0
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
usingstr dc c'usage: dirs [-l]',h'0d00'
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* PUSHD: builtin command
|
|
|
|
* syntax: pushd [+n | dir]
|
|
|
|
*
|
|
|
|
* change directory and push
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
pushd START
|
|
|
|
|
|
|
|
using DirData
|
|
|
|
using vardata
|
|
|
|
|
|
|
|
count equ 0
|
|
|
|
p equ count+2
|
|
|
|
arg equ p+4
|
|
|
|
space equ arg+4
|
|
|
|
|
|
|
|
subroutine (4:argv,2:argc),space
|
|
|
|
|
|
|
|
lda argc
|
|
|
|
dec a
|
|
|
|
beq xchange
|
|
|
|
dec a
|
|
|
|
bne usage
|
|
|
|
|
|
|
|
ldy #4
|
|
|
|
lda [argv],y
|
|
|
|
sta arg
|
|
|
|
ldy #6
|
|
|
|
lda [argv],y
|
|
|
|
sta arg+2
|
|
|
|
lda [arg]
|
|
|
|
and #$FF
|
|
|
|
cmp #'+'
|
|
|
|
beq rotate
|
|
|
|
jmp godir
|
|
|
|
|
|
|
|
usage ldx #^usagestr
|
|
|
|
lda #usagestr
|
|
|
|
jsr errputs
|
|
|
|
jmp exit
|
|
|
|
|
|
|
|
xchange lda tods
|
|
|
|
bne xgoodie
|
|
|
|
ldx #^err1
|
|
|
|
lda #err1
|
|
|
|
jsr errputs
|
|
|
|
jmp exit
|
|
|
|
xgoodie jsl dotods
|
|
|
|
lda tods
|
|
|
|
dec a
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tax
|
|
|
|
lda tods
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda dirstack,x
|
|
|
|
pha
|
|
|
|
lda dirstack,y
|
|
|
|
sta dirstack,x
|
|
|
|
pla
|
|
|
|
sta dirstack,y
|
|
|
|
lda dirstack+2,x
|
|
|
|
pha
|
|
|
|
lda dirstack+2,y
|
|
|
|
sta dirstack+2,x
|
|
|
|
pla
|
|
|
|
sta dirstack+2,y
|
|
|
|
jmp gototop
|
|
|
|
|
|
|
|
rotate add4 arg,#1,p
|
|
|
|
pei (p+2)
|
|
|
|
pei (p)
|
|
|
|
jsr cstrlen
|
|
|
|
tax
|
|
|
|
Dec2Int (p,@x,#0),@a
|
|
|
|
sta count
|
|
|
|
cmp #0
|
|
|
|
beq godir
|
|
|
|
lda tods
|
|
|
|
beq roterr
|
|
|
|
lda count
|
|
|
|
cmp tods
|
|
|
|
beq rotloop
|
|
|
|
bcc rotloop
|
|
|
|
|
|
|
|
roterr ldx #^err2
|
|
|
|
lda #err2
|
|
|
|
jsr errputs
|
|
|
|
jmp exit
|
|
|
|
|
|
|
|
rotloop lda tods
|
|
|
|
dec a
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda dirstack+6,y
|
|
|
|
pha
|
|
|
|
lda dirstack+4,y
|
|
|
|
pha
|
|
|
|
rotloop2 lda dirstack,y
|
|
|
|
sta dirstack+4,y
|
|
|
|
lda dirstack+2,y
|
|
|
|
sta dirstack+6,y
|
|
|
|
cpy #0
|
|
|
|
beq nextrot
|
|
|
|
dey
|
|
|
|
dey
|
|
|
|
dey
|
|
|
|
dey
|
|
|
|
bra rotloop2
|
|
|
|
nextrot pla
|
|
|
|
sta dirstack
|
|
|
|
pla
|
|
|
|
sta dirstack+2
|
|
|
|
dec count
|
|
|
|
bne rotloop
|
|
|
|
bra gototop
|
|
|
|
|
|
|
|
godir jsl dotods
|
|
|
|
pei (arg+2)
|
|
|
|
pei (arg)
|
|
|
|
jsl gotodir
|
|
|
|
bne exit
|
|
|
|
|
|
|
|
inc tods
|
|
|
|
lda tods
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda #0
|
|
|
|
sta dirstack,y
|
|
|
|
sta dirstack+2,y
|
|
|
|
jsl dotods
|
|
|
|
bra done
|
|
|
|
|
|
|
|
gototop lda tods
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda dirstack+2,y
|
|
|
|
pha
|
|
|
|
lda dirstack,y
|
|
|
|
pha
|
|
|
|
jsl gotodir
|
|
|
|
|
|
|
|
done lda varpushdsil
|
|
|
|
bne exit
|
|
|
|
pea 1
|
|
|
|
jsl showdir
|
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
exit return 2:#0
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
usagestr dc c'usage: pushd [+n | dir]',h'0d00'
|
|
|
|
err1 dc c'pushd: No other directory',h'0d00'
|
|
|
|
err2 dc c'pushd: Directory stack not that deep',h'0d00'
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* POPD: builtin command
|
|
|
|
* syntax: popd [+n]
|
|
|
|
*
|
|
|
|
* pop a directory from stack and cd to it
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
popd START
|
|
|
|
|
|
|
|
using DirData
|
|
|
|
using vardata
|
|
|
|
|
|
|
|
count equ 0
|
|
|
|
arg equ count+2
|
|
|
|
space equ arg+4
|
|
|
|
|
|
|
|
subroutine (4:argv,2:argc),space
|
|
|
|
|
|
|
|
lda argc
|
|
|
|
dec a
|
|
|
|
jeq noarg
|
|
|
|
dec a
|
|
|
|
bne using
|
|
|
|
ldy #4
|
|
|
|
lda [argv],y
|
|
|
|
sta arg
|
|
|
|
ldy #6
|
|
|
|
lda [argv],y
|
|
|
|
sta arg+2
|
|
|
|
lda [arg]
|
|
|
|
and #$FF
|
|
|
|
cmp #'+'
|
|
|
|
beq plus
|
|
|
|
|
|
|
|
using ldx #^usingstr
|
|
|
|
lda #usingstr
|
|
|
|
jsr errputs
|
|
|
|
jmp exit
|
|
|
|
|
|
|
|
plus add4 arg,#1,arg
|
|
|
|
pei (arg+2)
|
|
|
|
pei (arg)
|
|
|
|
jsr cstrlen
|
|
|
|
tax
|
|
|
|
Dec2Int (arg,@x,#0),@a
|
|
|
|
sta count
|
|
|
|
cmp #0
|
|
|
|
beq noarg
|
|
|
|
lda tods
|
|
|
|
beq pluserr
|
|
|
|
lda count
|
|
|
|
cmp tods
|
|
|
|
beq doplus
|
|
|
|
bcc doplus
|
|
|
|
|
|
|
|
pluserr ldx #^err2
|
|
|
|
lda #err2
|
|
|
|
jsr errputs
|
|
|
|
bra exit
|
|
|
|
|
|
|
|
doplus jsl dotods
|
|
|
|
sub2 tods,count,@a
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tax
|
|
|
|
phx
|
|
|
|
lda dirstack+2,x
|
|
|
|
pha
|
|
|
|
lda dirstack,x
|
|
|
|
pha
|
|
|
|
jsl nullfree
|
|
|
|
plx
|
|
|
|
plusloop lda dirstack+4,x
|
|
|
|
sta dirstack,x
|
|
|
|
lda dirstack+6,x
|
|
|
|
sta dirstack+2,x
|
|
|
|
inx4
|
|
|
|
dec count
|
|
|
|
bne plusloop
|
|
|
|
dec tods
|
|
|
|
|
|
|
|
bra gototop
|
|
|
|
|
|
|
|
noarg lda tods
|
|
|
|
bne noarg0
|
|
|
|
|
|
|
|
ldx #^err1
|
|
|
|
lda #err1
|
|
|
|
jsr errputs
|
|
|
|
bra exit
|
|
|
|
|
|
|
|
noarg0 lda tods
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda dirstack+2,y
|
|
|
|
pha
|
|
|
|
lda dirstack,y
|
|
|
|
pha
|
|
|
|
jsl nullfree
|
|
|
|
dec tods
|
|
|
|
|
|
|
|
gototop lda tods
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda dirstack+2,y
|
|
|
|
pha
|
|
|
|
lda dirstack,y
|
|
|
|
pha
|
|
|
|
jsl gotodir
|
|
|
|
|
|
|
|
lda varpushdsil
|
|
|
|
bne exit
|
|
|
|
|
|
|
|
pea 1
|
|
|
|
jsl showdir
|
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
exit return 2:#0
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
usingstr dc c'Usage: popd [+n]',h'0d00'
|
|
|
|
err1 dc c'popd: Directory stack empty',h'0d00'
|
|
|
|
err2 dc c'popd: Directory stack not that deep',h'0d00'
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Set prefix 0 to the passed c string
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
gotodir PRIVATE
|
|
|
|
|
|
|
|
retval equ 0
|
|
|
|
space equ retval+2
|
|
|
|
|
|
|
|
subroutine (4:dir),space
|
|
|
|
|
|
|
|
stz retval
|
|
|
|
|
|
|
|
pei (dir+2)
|
|
|
|
pei (dir)
|
|
|
|
jsr c2gsstr
|
|
|
|
sta PRecPath
|
|
|
|
sta GRecPath
|
|
|
|
stx PRecPath+2
|
|
|
|
stx GRecPath+2
|
|
|
|
|
|
|
|
lock mutex
|
|
|
|
|
|
|
|
GetFileInfo GRec
|
|
|
|
bcc ok
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
ohshit sta ErrError
|
|
|
|
ErrorGS Err
|
1997-11-18 05:31:00 +00:00
|
|
|
inc retval
|
|
|
|
bra done
|
|
|
|
|
|
|
|
ok if2 GRecFT,eq,#$F,ok2
|
|
|
|
ldx dir+2
|
|
|
|
lda dir
|
|
|
|
jsr errputs
|
|
|
|
ldx #^direrr
|
|
|
|
lda #direrr
|
|
|
|
jsr errputs
|
|
|
|
inc retval
|
|
|
|
bra done
|
|
|
|
|
|
|
|
ok2 SetPrefix PRec
|
|
|
|
bcs ohshit
|
|
|
|
|
|
|
|
done ph4 PRecPath
|
|
|
|
jsl nullfree
|
|
|
|
|
|
|
|
unlock mutex
|
|
|
|
|
|
|
|
return 2:retval
|
|
|
|
|
|
|
|
mutex key
|
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
; Parameter block for GS/OS SetPrefix call
|
|
|
|
PRec dc i'2' pCount
|
|
|
|
PRecNum dc i'0' prefixNum (0 = current directory)
|
|
|
|
PRecPath ds 4 Pointer to input prefix path
|
1997-11-18 05:31:00 +00:00
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
; Parameter block for GS/OS GetFileInfo call
|
|
|
|
GRec dc i'3' pCount
|
|
|
|
GRecPath ds 4 Pointer to input pathname
|
|
|
|
GRecAcc ds 2 access (result)
|
|
|
|
GRecFT ds 2 fileType (result)
|
|
|
|
|
|
|
|
; Parameter block for shell ErrorGS call (p 393 in ORCA/M manual)
|
|
|
|
Err dc i2'1' pCount
|
|
|
|
ErrError ds 2 Error number
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
dirErr dc c': Not a directory',h'0d00'
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Display the directory stack
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
showdir PRIVATE
|
|
|
|
|
|
|
|
using DirData
|
|
|
|
|
|
|
|
idx equ 0
|
|
|
|
space equ idx+2
|
|
|
|
|
|
|
|
subroutine (2:flag),space
|
|
|
|
|
|
|
|
lda tods
|
|
|
|
asl a
|
|
|
|
asl a
|
|
|
|
sta idx
|
|
|
|
|
|
|
|
loop lda flag
|
|
|
|
beq long
|
|
|
|
ldy idx
|
|
|
|
lda dirstack+2,y
|
|
|
|
pha
|
|
|
|
lda dirstack,y
|
|
|
|
pha
|
|
|
|
jsl path2tilde
|
|
|
|
phx
|
|
|
|
pha
|
|
|
|
jsr puts
|
|
|
|
jsl nullfree
|
|
|
|
bra next
|
|
|
|
long ldy idx
|
|
|
|
lda dirstack+2,y
|
|
|
|
tax
|
|
|
|
lda dirstack,y
|
|
|
|
jsr puts
|
|
|
|
next lda #' '
|
|
|
|
jsr putchar
|
|
|
|
lda idx
|
|
|
|
beq done
|
|
|
|
sub2 idx,#4,idx
|
|
|
|
bra loop
|
|
|
|
|
|
|
|
done jsr newline
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Set the top of the stack to the current directory
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
dotods PRIVATE
|
|
|
|
|
|
|
|
using DIRDATA
|
|
|
|
|
|
|
|
p equ 0
|
|
|
|
idx equ p+4
|
|
|
|
space equ idx+2
|
|
|
|
|
|
|
|
subroutine (0:dummy),space
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
lda tods Get index number.
|
|
|
|
asl a Multiply by four
|
|
|
|
asl a to get byte offset.
|
|
|
|
sta idx Store in idx
|
|
|
|
tay and Y-register.
|
|
|
|
lda dirstack,y If there is an address
|
|
|
|
ora dirstack+2,y in this position,
|
1997-11-18 05:31:00 +00:00
|
|
|
beq setit
|
|
|
|
|
|
|
|
lda dirstack+2,y
|
|
|
|
pha
|
|
|
|
lda dirstack,y
|
|
|
|
pha
|
1998-08-03 17:30:30 +00:00
|
|
|
jsl nullfree free it.
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
setit lock mutex
|
1998-08-03 17:30:30 +00:00
|
|
|
|
|
|
|
pea 0
|
|
|
|
jsl getpfxstr Get value of prefix 0.
|
1997-11-18 05:31:00 +00:00
|
|
|
sta p
|
|
|
|
stx p+2
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
ora p+2 If NULL pointer returned,
|
|
|
|
beq done an error was reported.
|
1997-11-18 05:31:00 +00:00
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
ldy #2 If length of returned
|
|
|
|
lda [p],y GS/OS string is 0,
|
|
|
|
bne ok an error was reported.
|
|
|
|
|
|
|
|
ph4 p Free the buffer.
|
|
|
|
jsl nullfree
|
|
|
|
|
|
|
|
bra done
|
|
|
|
|
|
|
|
;
|
|
|
|
; Move text in GS/OS result buffer to beginning of buffer
|
|
|
|
; (overwritting the two length words).
|
|
|
|
;
|
|
|
|
ok clc Source is result
|
|
|
|
lda p buffer plus
|
|
|
|
adc #4 four bytes.
|
|
|
|
tay
|
|
|
|
lda p+2
|
|
|
|
adc #0
|
|
|
|
pha
|
|
|
|
phy
|
|
|
|
pei (p+2) Destination is first
|
|
|
|
pei (p) byte of buffer.
|
|
|
|
jsr copycstr
|
|
|
|
|
|
|
|
ldy idx Store address of string
|
|
|
|
lda p in current position
|
|
|
|
sta dirstack,y of directory stack.
|
1997-11-18 05:31:00 +00:00
|
|
|
lda p+2
|
|
|
|
sta dirstack+2,y
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
done unlock mutex
|
|
|
|
|
1997-11-18 05:31:00 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
mutex key
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Directory stack data
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
DirData DATA
|
|
|
|
|
|
|
|
dirstack ds MAXD*4
|
|
|
|
tods dc i'0'
|
|
|
|
|
|
|
|
END
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Replace $HOME with a '~' in string
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
path2tilde START
|
1998-08-03 17:30:30 +00:00
|
|
|
|
1997-11-18 05:31:00 +00:00
|
|
|
ptr equ 0
|
|
|
|
newpath equ ptr+4
|
|
|
|
home equ newpath+4
|
|
|
|
space equ home+4
|
|
|
|
|
|
|
|
subroutine (4:path),space
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
pei (path+2) Get length of
|
|
|
|
pei (path) path string
|
|
|
|
jsr cstrlen parameter.
|
|
|
|
inc2 a Add 2, and allocate
|
|
|
|
pea 0 memory for result string.
|
1997-11-18 05:31:00 +00:00
|
|
|
pha
|
1998-08-03 17:30:30 +00:00
|
|
|
~NEW
|
1997-11-18 05:31:00 +00:00
|
|
|
sta newpath
|
|
|
|
stx newpath+2
|
|
|
|
sta ptr
|
|
|
|
stx ptr+2
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
ph4 #homename Get $HOME environment variable.
|
|
|
|
jsl getenv
|
1997-11-18 05:31:00 +00:00
|
|
|
sta home
|
|
|
|
stx home+2
|
1998-08-03 17:30:30 +00:00
|
|
|
ora home+2 If buffer wasn't allocated
|
|
|
|
jeq notfound2 cannot search for $HOME.
|
1997-11-18 05:31:00 +00:00
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
ldy #2 Get result length word.
|
1997-11-18 05:31:00 +00:00
|
|
|
lda [home],y
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
beq notfound2 If 0, just copy the rest.
|
|
|
|
tax Use X to count down HOME chars.
|
|
|
|
ldy #0 path index is based from 0.
|
|
|
|
checkhome lda [path],y
|
|
|
|
and #$FF Isolate character in parameter,
|
|
|
|
beq notfound2 checking for end of string,
|
|
|
|
jsr tolower converting to lower-case
|
|
|
|
jsr toslash and changing ":" to "/".
|
1998-08-03 17:30:30 +00:00
|
|
|
pha Hold on stack for comparison.
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
iny4 $home has 4 bytes of length info
|
|
|
|
lda [home],y that need to be indexed over.
|
|
|
|
dey2 Take back 3 of the offset,
|
|
|
|
dey nudging Y ahead by 1.
|
|
|
|
and #$FF Isolate $home character,
|
|
|
|
jsr tolower converting to lower-case
|
|
|
|
jsr toslash and changing ":" to "/".
|
|
|
|
cmp 1,s If the parameter character !=,
|
|
|
|
bne notfound there is no match.
|
|
|
|
pla Pop the parameter character off stack.
|
|
|
|
dex Decrement $home length counter.
|
|
|
|
bne checkhome If more, stay in loop.
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
;
|
|
|
|
; First part of parameter matched $HOME
|
|
|
|
;
|
|
|
|
cmp #'/' This char = "/"?
|
|
|
|
beq found yes -- it's a match.
|
|
|
|
lda [path],y If the following character
|
|
|
|
and #$FF is zero (end of string),
|
1997-11-18 05:31:00 +00:00
|
|
|
beq found
|
1998-08-03 17:30:30 +00:00
|
|
|
jsr toslash '/', or ':', we have a match.
|
1997-11-18 05:31:00 +00:00
|
|
|
cmp #'/'
|
|
|
|
bne notfound2
|
1998-08-03 17:30:30 +00:00
|
|
|
found lda #'~' Store '~' as first character
|
|
|
|
sta [ptr] in result buffer, and bump
|
|
|
|
incad ptr result pointer.
|
1997-11-18 05:31:00 +00:00
|
|
|
bra copyrest
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
;
|
|
|
|
; First part of parameter does not match $HOME
|
|
|
|
;
|
|
|
|
notfound pla Get rid of comparison value on stack.
|
|
|
|
notfound2 ldy #0 Not found: copy from beginning.
|
|
|
|
|
|
|
|
;
|
|
|
|
; Copy remainder of parameter (Y-reg marks start) to destination string
|
|
|
|
;
|
1997-11-18 05:31:00 +00:00
|
|
|
copyrest short a
|
|
|
|
copyloop lda [path],y
|
|
|
|
beq endcopy
|
|
|
|
cmp #':'
|
|
|
|
bne copyput
|
|
|
|
lda #'/'
|
|
|
|
copyput sta [ptr]
|
|
|
|
long a
|
1998-07-20 16:23:11 +00:00
|
|
|
incad ptr
|
1997-11-18 05:31:00 +00:00
|
|
|
short a
|
|
|
|
iny
|
|
|
|
bra copyloop
|
1998-08-03 17:30:30 +00:00
|
|
|
endcopy sta [ptr]
|
1997-11-18 05:31:00 +00:00
|
|
|
long a
|
1998-08-03 17:30:30 +00:00
|
|
|
dec ptr If final character
|
|
|
|
lda [ptr] was "/",
|
1997-11-18 05:31:00 +00:00
|
|
|
cmp #'/'
|
|
|
|
bne skipshorten
|
1998-08-03 17:30:30 +00:00
|
|
|
lda #0 obliterate it.
|
1997-11-18 05:31:00 +00:00
|
|
|
sta [ptr]
|
|
|
|
|
1998-08-03 17:30:30 +00:00
|
|
|
skipshorten pei (home+2) Free memory allocated
|
|
|
|
pei (home) for the value of $HOME.
|
|
|
|
jsl nullfree
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
return 4:newpath
|
|
|
|
|
Major changes to gsh with this checkin:
* When ~ is parsed and next character is a delimiter, make sure contents
of expanded $HOME match the user's delimiter.
* When wildcard patterns don't match, rather than terminating the command
gsh now prints "No match: <pattern> ignored" and passes the command line
minus the unmatched patterns on to be executed.
* Modified echo command so it doesn't add a blank to the end.
* Make "clear" and "source" built-ins non-forked commands. Unforking
"source" allows prefixes to be set in files that are sourced.
* Add loop to parse a single command (removing leading whitespace) before
sending it off to be expanded and executed. Skip null lines and comments
at this level. This allows later commands that depend upon variables set
in the 1st command to work; e.g.: set t_num=1 ; echo "Test number $t_num"
Also fixes problems seen when tab was first character of multiple lines.
* Initialize environment variable flags at startup (for echo, nodirexec,
nonewline, noglob, nobeep, pushdsilent, term, and ignoreeof). Set
flag when env var is set in upper or lower case (formerly, only worked
with lower case).
* Lots of places two-word addresses are incremented using inc, without
checking for overflow into the high-order word. As these are discovered,
they are changed to use adc on both words.
See file UpdateLog for detailed list of changes.
1998-06-30 17:26:04 +00:00
|
|
|
homename gsstr 'home' Env variable name
|
1997-11-18 05:31:00 +00:00
|
|
|
|
|
|
|
END
|
1998-08-03 17:30:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
**************************************************************************
|
|
|
|
*
|
|
|
|
* Return pointer to current directory (\0) GS/OS string in a/x
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
|
|
|
|
getpfxstr START
|
|
|
|
|
|
|
|
p equ 0
|
|
|
|
space equ p+4
|
|
|
|
|
|
|
|
subroutine (2:pnum),space
|
|
|
|
|
|
|
|
lock mutex
|
|
|
|
|
|
|
|
; Use dummy GS/OS result buf to get length of pathname
|
|
|
|
;
|
|
|
|
lda pnum Put prefix num into
|
|
|
|
cmp #$FFFF If it's $FFFF,
|
|
|
|
beq doboot use GetBootVol, not GetPrefix.
|
|
|
|
|
|
|
|
sta gpnum Store prefix num in parameter block.
|
|
|
|
ld4 TempResultBuf,gppath
|
|
|
|
GetPrefix gpparm
|
|
|
|
bra chklen
|
|
|
|
|
|
|
|
doboot ld4 TempResultBuf,gbpath
|
|
|
|
GetBootVol gbparm
|
|
|
|
|
|
|
|
chklen lda TempRBlen Use that length
|
|
|
|
clc plus five (for
|
|
|
|
adc #5 len words and terminator)
|
|
|
|
pea 0 to allocate memory
|
|
|
|
pha that holds the string.
|
|
|
|
~NEW
|
|
|
|
sta p Store result in
|
|
|
|
stx p+2 direct page pointer.
|
|
|
|
|
|
|
|
ora p+2 If memory was not available,
|
|
|
|
bne memok
|
|
|
|
lda #0201 report memory error and
|
|
|
|
bra rpterr return NULL to user.
|
|
|
|
|
|
|
|
|
|
|
|
memok lda TempRBlen Store result buf
|
|
|
|
inc2 a length at start
|
|
|
|
inc2 a of buffer.
|
|
|
|
sta [p]
|
|
|
|
|
|
|
|
tay Store a null byte
|
|
|
|
short a at the end of the
|
|
|
|
lda #0 string so it can
|
|
|
|
sta [p],y be used as a c-string.
|
|
|
|
long a
|
|
|
|
;
|
|
|
|
; Get the prefix string into the newly allocated buffer.
|
|
|
|
;
|
|
|
|
lda pnum Prefix number tells
|
|
|
|
cmp #$FFFF whether to use
|
|
|
|
beq doboot2 GetPrefix or GetBootVol.
|
|
|
|
|
|
|
|
mv4 p,gppath
|
|
|
|
GetPrefix gpparm
|
|
|
|
bcs rpterr
|
|
|
|
bra done
|
|
|
|
|
|
|
|
doboot2 mv4 p,gbpath
|
|
|
|
GetBootVol gbparm
|
|
|
|
bcc done If there was an error,
|
|
|
|
|
|
|
|
rpterr sta errError Save the value
|
|
|
|
ErrorGS err and report it.
|
|
|
|
ldy #2 Set length of returned
|
|
|
|
lda #0 string to 0 so caller
|
|
|
|
sta [p],y can detect error condition.
|
|
|
|
|
|
|
|
done unlock mutex
|
|
|
|
|
|
|
|
;
|
|
|
|
; Return pointer to caller. (Caller has responsibility to deallocate.)
|
|
|
|
;
|
|
|
|
return 4:p
|
|
|
|
|
|
|
|
mutex key
|
|
|
|
|
|
|
|
;
|
|
|
|
; Parameter block for GetPrefix GS/OS call
|
|
|
|
;
|
|
|
|
gpparm dc i2'2' pCount
|
|
|
|
gpnum dc i2'0' prefixNum (from parameter)
|
|
|
|
gppath dc i4'0' prefix returned to this GS/OS buffer.
|
|
|
|
|
|
|
|
;
|
|
|
|
; Parameter block for GetBootVol GS/OS call
|
|
|
|
;
|
|
|
|
gbparm dc i2'1' pCount
|
|
|
|
gbpath dc i4'0' prefix returned to this GS/OS buffer.
|
|
|
|
|
|
|
|
;
|
|
|
|
; GS/OS result buffer for getting the full length of the prefix string
|
|
|
|
;
|
|
|
|
TempResultBuf dc i2'5' Only five bytes total.
|
|
|
|
TempRBlen ds 2 String's length returned here.
|
|
|
|
ds 1 Only 1 byte for value.
|
|
|
|
|
|
|
|
;
|
|
|
|
; Parameter block for shell ErrorGS call (p 393 in ORCA/M manual)
|
|
|
|
;
|
|
|
|
err dc i2'1' pCount
|
|
|
|
errError ds 2 Error number
|
|
|
|
|
|
|
|
END
|