file command propeller help!
hello, can anyone show me a sample code using the "file" command to import an external dat from a file? if so how do you even set up a file to have a dat object stored in it? Thank you very much for your help

Comments
DAT filestart: FILE "someFile.txt" ' a text file for example BYTE 0 ' marks the end of the file PUB displayIt | ptr, char ptr := @filestart repeat while char := byte[ptr++] ' stop at zero byte serial.tx(char) ' assume we're transmitting to a PC via FullDuplexSerial