; Sample init file to make E11 act as a plain VT100. ; ; Attach the serial port we want to use, as TT1: assign tt1: com1: /mode:57600,n,8,1 ; ; Define ALT-Q to quit, dropping DTR def key q = & if alt then & prompt : "dep/phys 17776500 0"+chr$(13)+"quit"+chr$(13) & else & letter "Q" & endif ; ; Define ALT-E to exit, w/o dropping DTR def key e = & if alt then & prompt : "quit"+chr$(13) & else & letter "E" & endif ; ; Load and start trivial terminal program: load vt100 go