A list of parameters with their addresses and possible values appears on page 45 of the Silentype manual. The decimal addresses in the manual are expressed as negative numbers. They can be converted for use with LOGO by adding 65,536 (two to the sixteenth power).
Here is a no-frills Dump with unidirectional printing:
TO DUMP :STSLOT
TYPE CHAR 17
END
CHAR 17 is CTRL-Q. :STSLOT should be set to the number of the slot that the Silentype interface is plugged into.
To dump a negative copy of the screen, with black on the paper where there was white on the screen, change the appropriate parameter:
TO NEGDUMP :STSLOT
TYPE CHAR 17
END