DataFile |
Previous Next |
DataFile <File> [, <FileType>]
|
Part
|
Description
|
<File>
|
Required. Path and file to insert into your program.
|
<FileType>
|
Optional. Valid values are @Asm, @Txt, Txt, @Bin, and Bin. @Bin
and Binare identical, and @Asm, @Txt, and Txt are identical. The
default <FileType> is @Asm.
|
LoadTiles MyTiles,10,500
Reload MyIntegers
ReadInt c
Print c
MyTiles:
DataFile graphics\my_tiles, @Bin
MyIntegers:
DataFile "c:\dev\my_ints.asm"
|