# Help(T1)

options () {
	echo -e "Available options: -dss1, -1tr6.\n"
}

expected () {
	echo -e "Expected: t1isa, t1bisa, t1pci or t1bpci.\n"
}

valid () {
	if [ "$1" == "" ]; then
		false
	else
		case $1 in
			t1isa|t1bisa|t1pci|t1bpci)	true
							;;
			*)				false
							;;
		esac
	fi
}

