10
LOAD/BLOAD/DLOAD
Fun
ction These interpreter co
mmand
s
load
a file (
e.
g.
program) from disk to computer memor
y.
Format
BA
SIC
LO
AD
"filename
",
de
vice"'[.command"']
LOAD
filenameS,
device
"'[,command"']
BA
SIC 7.0
DLOAD
"filename"[,D drive"'] [,U
de
vice"']
Syntax
BL
O
AD
"filename"[,D drive"']
[,
U device"']
[,
B bank"']
[,
P start"']
DLOAD
(f
ilename) [,D drive"'] [,U
de
vice"']
The
f
il
ename
must
be
a string t
hat
is
enclosed
in
the
quotat
ion marks
and
such string
is
also a
name
of
disk
file.
The
device'" default v
alue
is
B.
The
drive'" default value
is
O.
The
command'"
default value
is
0 that means the
program file
is
loaded
at
the
BA
SIC
program
sta
rt
loca
tion.
When the
command'"
is
1, then the program file will
be
loaded
at
the same
loca
tion where it was
saved from.
BLOAD
command
is
specified for binary file to
load
to computer quickly. Where the
preced
i
ng
lett
ers
D,U,B
and
P please refer
to
S
YNTA
X.
Exa
mple
s: L
OAD
"
DEMO
",
B
DLOAD
"
DEMO
"
BLOAD
"
PICTUE",DO
,UB,0,PB192
LOAD
"*
",B
,1:
REM
(This
command
is
suitable for
loading
games.)