Changes to the Embedfile command:
embedfile pointer,filename,offset,length
offset and length are optional
a negative offset counts from the end of the file
test: t.txt contains "ABCDEF":
sys p
embedfile p,"t.txt",3,2
byte b at p
print b[1] '68
zstring z at p
print z 'DE
bstring s at @p
print s " " len s 'DE 2
Charles