! Edit History:
!
! 11-Feb-1986	A. Kreymer
!	Made additional module named ADM3A, copy of ADM3 and FT3.
!       Removed VK100 support, present in system now.
!       Now we support ADM3, ADM3A, FT3
!
!  7-Jun-1985	A. KREYMER
!	Renamed copy of VT100 from TV970 to VK100, for GIGI users.
!       Created copy of ADM3 named FT3, for compatibility with SCRFT
!       name.  Supported foreign terminals are now:
!		VK100 ADM3 FT3
!
! 11-Mar-1985	ARK
!	Renamed standard VT100 to TV970, added ADM3
!
! 	To use a TERMTABLE file, you must first generate a TERMTABLE.EXE
!	file from the .TXT information, by running SYS$SYSTEM:SMGBLDTRM
!	Then define symbol TERM$TABLOC to be the directory (not the file!)
!	containing the TERMTABLE.EXE file.  The MAIL utility, and SMG$
!	run time library routines presently appear to use this table.
!	The old LIB$ screen routines still use the logical name SCRFT, which
!	should be directed to an old style SCRFT.EXE (from SCRFT.MAR) file.
!	See VMS4 System Utilities RTL Reference Manual, Section 3.10,
!       Screen Management Guidelines/Foreign Terminal Support for details.

!  The ADM3 definition is based on Zenith Z-29 documentation for its
!      ADM3-A emulation mode

NAME = "ADM3"

	BOOLEAN
	advanced_video = 0,
	ansi_crt =	0,
	auto_margin =	0,
	block_mode =	0,
	backspace =	1,
	cursor_report_ansi = 0,
	dec_crt =	1,
	edit =		0,
	eight_bit =	0,
	fulldup =	1,
	ignore_newline = 0,
	insert_mode_nulls = 0,
	lowercase =	1,
	no_scroll =	0,
	overstrike =    0,
	physical_ff =	0,
	physical_tabs =	0,
	printer_port =	1,
	regis = 	0,
	scope =		1,
	sixel_graphics = 0,
	soft_characters = 0,
	underline =	0

	NUMERIC
	columns =	80,
	cr_fill =	0,
	lf_fill =	0,
	rows =		24

	STRING
	device_attributes = "",
	init_string = "^Z",
	cursor_down = "^J",		cursor_left = "^H",
	cursor_right = "^L",		cursor_up = "^K",		
	erase_whole_display = "^Z",
	home = "^^",
	set_cursor_abs = "$=(%1+31)(%2+31)",
	horizontal_bar = "-",
	vertical_bar = "|",
	cross_char = "+",
	upper_left_corner = "+",	upper_right_corner = "+",
	lower_left_corner = "+",	lower_right_corner = "+",
	top_t_char = "t",		bottom_t_char = "-",
	left_t_char = "=",		right_t_char = "=",
	truncation_icon="`"

	END

!  The ADM3 definition is based on Zenith Z-29 documentation for its
!      ADM3-A emulation mode

NAME = "ADM3A"

	BOOLEAN
	advanced_video = 0,
	ansi_crt =	0,
	auto_margin =	0,
	block_mode =	0,
	backspace =	1,
	cursor_report_ansi = 0,
	dec_crt =	1,
	edit =		0,
	eight_bit =	0,
	fulldup =	1,
	ignore_newline = 0,
	insert_mode_nulls = 0,
	lowercase =	1,
	no_scroll =	0,
	overstrike =    0,
	physical_ff =	0,
	physical_tabs =	0,
	printer_port =	1,
	regis = 	0,
	scope =		1,
	sixel_graphics = 0,
	soft_characters = 0,
	underline =	0

	NUMERIC
	columns =	80,
	cr_fill =	0,
	lf_fill =	0,
	rows =		24

	STRING
	device_attributes = "",
	init_string = "^Z",
	cursor_down = "^J",		cursor_left = "^H",
	cursor_right = "^L",		cursor_up = "^K",		
	erase_whole_display = "^Z",
	home = "^^",
	set_cursor_abs = "$=(%1+31)(%2+31)",
	horizontal_bar = "-",
	vertical_bar = "|",
	cross_char = "+",
	upper_left_corner = "+",	upper_right_corner = "+",
	lower_left_corner = "+",	lower_right_corner = "+",
	top_t_char = "t",		bottom_t_char = "-",
	left_t_char = "=",		right_t_char = "=",
	truncation_icon="`"

	END

!  The ADM3 definition is based on Zenith Z-29 documentation for its
!      ADM3-A emulation mode

NAME = "FT3"

	BOOLEAN
	advanced_video = 0,
	ansi_crt =	0,
	auto_margin =	0,
	block_mode =	0,
	backspace =	1,
	cursor_report_ansi = 0,
	dec_crt =	1,
	edit =		0,
	eight_bit =	0,
	fulldup =	1,
	ignore_newline = 0,
	insert_mode_nulls = 0,
	lowercase =	1,
	no_scroll =	0,
	overstrike =    0,
	physical_ff =	0,
	physical_tabs =	0,
	printer_port =	1,
	regis = 	0,
	scope =		1,
	sixel_graphics = 0,
	soft_characters = 0,
	underline =	0

	NUMERIC
	columns =	80,
	cr_fill =	0,
	lf_fill =	0,
	rows =		24

	STRING
	device_attributes = "",
	init_string = "^Z",
	cursor_down = "^J",		cursor_left = "^H",
	cursor_right = "^L",		cursor_up = "^K",		
	erase_whole_display = "^Z",
	home = "^^",
	set_cursor_abs = "$=(%1+31)(%2+31)",
	horizontal_bar = "-",
	vertical_bar = "|",
	cross_char = "+",
	upper_left_corner = "+",	upper_right_corner = "+",
	lower_left_corner = "+",	lower_right_corner = "+",
	top_t_char = "t",		bottom_t_char = "-",
	left_t_char = "=",		right_t_char = "=",
	truncation_icon="`"

	END