Nice idea, that tile system. I used that once too (when I still worked with Div)
I think you mean fps, instead of ftp, so the command for that is this:
screen fps()
paste something like this in your main loop
print screen fps()
that will give you the refresh rate (frames per second)
You can try to make a plain object of that size and then make a bitmap.
make object plain 1, 800,800
create bitmap 1,800,800
set current bitmap 1
Rem load the bitmaps and stuff here
For X = 0 to 19
For Y = 0 to 19
paste image ImageNumber,X * 40, Y * 40
Next Y
Next X
texture object 1, 1
Rem main loop and other things
hope this will help.
Magister Mundi sum!