home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
No Fragments Archive 10: Diskmags
/
nf_archive_10.iso
/
MAGS
/
ST_USER
/
1990
/
USERMY90.MSA
/
LISTINGS_DCREATE.S
< prev
next >
Wrap
Text File
|
1990-03-02
|
785b
|
31 lines
***************************************
* Create a directory *
***************************************
* Print the input prompt string
PEA prompt(PC) address of string
MOVE.W #9,-(A7) c_conws
TRAP #1 Gem Bdos
ADDQ.L #6,A7 tidy stack up
* Input the name of the directory to create
PEA name(PC) stack input buffer address
MOVE.W #10,-(A7) c_conrs
TRAP #1 Gem Bdos
ADDQ.L #6,A7 tidy stack
* Create the directory using d_create
PEA name+2(PC) stack address of name
MOVE.W #57,-(A7) d_create
TRAP #1 Gem Bdos
ADDQ.L #6,A7 tidy stack up
* Finished, so return to the desktop
CLR -(A7) p_term_old
TRAP #1 Gem Bdos
prompt DC.B 'Enter directory to create: ',0
name DC.B 63,0 input buffer
DS.B 64 name stored here
EVEN