Did terminals (e.g. VT100) require a terminal driver on the host computer?












21















I'm wondering if terminals (like, e.g. the VT100) required the installation of a driver on the host system in order to work with that host?



I looked at the documentation of the VT102, and there is nothing mentioned about a driver.



I imagine that the setup of a terminal connected to an application on a host computer looks something like this:



enter image description here



The terminal is connected over an RS-232 communication line to the computer (of course, there might also be two modems and a public carrier line between the two RS-232 interfaces, but it shouldn't matter here).



On the host computer is the application that must get its input from the terminal, and send its output to the terminal. To this end, the application must somehow be connected to the RS-232 interface to which the terminal is connected. In the end, the application must read characters from this interface and write characters to it.



Now the question is, what is between the application and the RS-232 interface?




  • Is there nothing at all, and the application must be programmed to directly listen on and write to the RS-232 interface (through the kernel)?

  • Is there a driver for this specific terminal, and the application communicates with this driver?

  • Is there a generic "terminal controller" in the kernel that works with all terminals and provides a common API for applications (like the TTY subsystem in UNIX)?


In other words, if you write a terminal application, what is the mechanism that you get notified about incoming data from the terminal, and how do you write output to the terminal?



In the latter two cases, the driver or controller could do some processing on the input, like line editing, and only send full lines to the application (as it is done by TTY in UNIX). This would offload a lot of complexity from the application.



The protocol that allows applications to control terminals consists usually just of characters (control characters and escape sequences intermixed with display characters). Furthermore, if we assume that all terminals use the ANSI escape sequences (from the VT100 onwards), the same "control language" works with every terminal. So, I'm not sure if each terminal really needs a dedicated driver on the host computer.










share|improve this question



























    21















    I'm wondering if terminals (like, e.g. the VT100) required the installation of a driver on the host system in order to work with that host?



    I looked at the documentation of the VT102, and there is nothing mentioned about a driver.



    I imagine that the setup of a terminal connected to an application on a host computer looks something like this:



    enter image description here



    The terminal is connected over an RS-232 communication line to the computer (of course, there might also be two modems and a public carrier line between the two RS-232 interfaces, but it shouldn't matter here).



    On the host computer is the application that must get its input from the terminal, and send its output to the terminal. To this end, the application must somehow be connected to the RS-232 interface to which the terminal is connected. In the end, the application must read characters from this interface and write characters to it.



    Now the question is, what is between the application and the RS-232 interface?




    • Is there nothing at all, and the application must be programmed to directly listen on and write to the RS-232 interface (through the kernel)?

    • Is there a driver for this specific terminal, and the application communicates with this driver?

    • Is there a generic "terminal controller" in the kernel that works with all terminals and provides a common API for applications (like the TTY subsystem in UNIX)?


    In other words, if you write a terminal application, what is the mechanism that you get notified about incoming data from the terminal, and how do you write output to the terminal?



    In the latter two cases, the driver or controller could do some processing on the input, like line editing, and only send full lines to the application (as it is done by TTY in UNIX). This would offload a lot of complexity from the application.



    The protocol that allows applications to control terminals consists usually just of characters (control characters and escape sequences intermixed with display characters). Furthermore, if we assume that all terminals use the ANSI escape sequences (from the VT100 onwards), the same "control language" works with every terminal. So, I'm not sure if each terminal really needs a dedicated driver on the host computer.










    share|improve this question

























      21












      21








      21


      5






      I'm wondering if terminals (like, e.g. the VT100) required the installation of a driver on the host system in order to work with that host?



      I looked at the documentation of the VT102, and there is nothing mentioned about a driver.



      I imagine that the setup of a terminal connected to an application on a host computer looks something like this:



      enter image description here



      The terminal is connected over an RS-232 communication line to the computer (of course, there might also be two modems and a public carrier line between the two RS-232 interfaces, but it shouldn't matter here).



      On the host computer is the application that must get its input from the terminal, and send its output to the terminal. To this end, the application must somehow be connected to the RS-232 interface to which the terminal is connected. In the end, the application must read characters from this interface and write characters to it.



      Now the question is, what is between the application and the RS-232 interface?




      • Is there nothing at all, and the application must be programmed to directly listen on and write to the RS-232 interface (through the kernel)?

      • Is there a driver for this specific terminal, and the application communicates with this driver?

      • Is there a generic "terminal controller" in the kernel that works with all terminals and provides a common API for applications (like the TTY subsystem in UNIX)?


      In other words, if you write a terminal application, what is the mechanism that you get notified about incoming data from the terminal, and how do you write output to the terminal?



      In the latter two cases, the driver or controller could do some processing on the input, like line editing, and only send full lines to the application (as it is done by TTY in UNIX). This would offload a lot of complexity from the application.



      The protocol that allows applications to control terminals consists usually just of characters (control characters and escape sequences intermixed with display characters). Furthermore, if we assume that all terminals use the ANSI escape sequences (from the VT100 onwards), the same "control language" works with every terminal. So, I'm not sure if each terminal really needs a dedicated driver on the host computer.










      share|improve this question














      I'm wondering if terminals (like, e.g. the VT100) required the installation of a driver on the host system in order to work with that host?



      I looked at the documentation of the VT102, and there is nothing mentioned about a driver.



      I imagine that the setup of a terminal connected to an application on a host computer looks something like this:



      enter image description here



      The terminal is connected over an RS-232 communication line to the computer (of course, there might also be two modems and a public carrier line between the two RS-232 interfaces, but it shouldn't matter here).



      On the host computer is the application that must get its input from the terminal, and send its output to the terminal. To this end, the application must somehow be connected to the RS-232 interface to which the terminal is connected. In the end, the application must read characters from this interface and write characters to it.



      Now the question is, what is between the application and the RS-232 interface?




      • Is there nothing at all, and the application must be programmed to directly listen on and write to the RS-232 interface (through the kernel)?

      • Is there a driver for this specific terminal, and the application communicates with this driver?

      • Is there a generic "terminal controller" in the kernel that works with all terminals and provides a common API for applications (like the TTY subsystem in UNIX)?


      In other words, if you write a terminal application, what is the mechanism that you get notified about incoming data from the terminal, and how do you write output to the terminal?



      In the latter two cases, the driver or controller could do some processing on the input, like line editing, and only send full lines to the application (as it is done by TTY in UNIX). This would offload a lot of complexity from the application.



      The protocol that allows applications to control terminals consists usually just of characters (control characters and escape sequences intermixed with display characters). Furthermore, if we assume that all terminals use the ANSI escape sequences (from the VT100 onwards), the same "control language" works with every terminal. So, I'm not sure if each terminal really needs a dedicated driver on the host computer.







      terminal rs232 driver vt100






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 21 at 15:17









      weibeldweibeld

      24617




      24617






















          8 Answers
          8






          active

          oldest

          votes


















          26














          Different terminals didn’t (and don’t) use different kernel-level drivers. In Unix-style systems, the kernel does provide some terminal-related features, called line disciplines and the TTY layer which you mention; there is typically at least a raw line discipline (which doesn’t perform any translation), and a cooked line discipline (which provides more-or-less line-level buffering, handling backspace etc. locally). Anything beyond that is handled inside each individual application, and early applications were hard-coded for specific terminals. (It was also common for applications to be terminal-specific, or support a limited number of terminals, on non-Unix-like operating systems such as CP/M.)



          However developers quickly realised that it would be useful to share terminal information, such as screen size, escape sequences for various common functions, etc. The first of these is termcap (terminal capability), developed by Bill Joy in 1978 for BSD; terminfo followed in the early eighties.



          Another layer of libraries provides more advance screen-handling features for programs which require that; the earliest common library of this type was curses, and the library currently used is ncurses.



          See The TTY demystified for more details.






          share|improve this answer


























          • I understand more or less how TTY works on UNIX. So you say that on other computers and OS in the 70's and 80's, it worked in a similar way as today on UNIX?

            – weibeld
            Jan 21 at 16:06











          • Ah no, sorry, I meant that the applications were hard-coded for specific terminals on other systems too, I’ll clarify that.

            – Stephen Kitt
            Jan 21 at 16:22






          • 1





            @weibeld, This answer assumes that we're talking about terminals whose lowest common denominator is, "able to function like a teletype." If you're talking about IBM 3270-style terminals or something like, then that's a whole different topic.

            – Solomon Slow
            Jan 21 at 16:25













          • @SolomonSlow How is it different? It seems the IBM 3270 is block-oriented, but the block editing is handled in a control unit external to the host computer. So does it still require special handling on the host computer? An IBM 3270 wouldn't work with a computer that works for VT100-style terminals?

            – weibeld
            Jan 21 at 16:46






          • 1





            I recall having read that in early Unix the tty driver did do one thing, namely handle translation for (dumb) teletypes that did not support lower-case letters. Supposedly this was detected when one typed the username in all-caps at login. The terminal driver would then represent lower-case letters as upper-case and mark up true uppercase letters somehow (with a `` escape, I think).

            – Henning Makholm
            Jan 21 at 21:08



















          10














          This was not done by a “driver” at the OS level as you are thinking of it.



          In Unix, there were drivers that dealt with the RS232 interface and these were surfaced as /dev/tty* devices and dealt with things like speed, echo, etc.



          As for escape sequences controlling the display of the terminal, that is not done at the “driver” level as you are thinking of it.



          This was done at the application level through a library like curses, and escape sequences were defined in a database like /etc/termcap or later, terminfo.



          Some apps used curses, others used termcap/terminfo to get the sequences but used their own code instead of curses. Some even had their own version of a termcap.



          (Termcap = Terminal Capabilities or something like that)



          Even though there was an ANSI standard for escape sequences, there were still variations and quirks, and some terminals simply used an entirely different scheme (like Wyse 50).






          share|improve this answer































            8














            "It depends".



            I'm answering this in the context of DEC timesharing systems, since that's the natural habitat of a DEC VT100.



            There's a hardware device such as a DZ11 terminal multiplexer (8 lines) that controls terminal lines by some physical protocol, such as RS232 or 20mA current loop. The physical protocol is a matter for the hardware. But the OS needs a driver for the hardware device.



            The driver does not know the terminal type, but it will contain a variety of settings that depend on the terminal or settings in the terminal: bits per character, parity use, required number of stop bits, and so on.



            Over that, but still in some driver, there's common functionality that all terminals need: character/line erase, special keys to generate signals (like ctrl/c = abort or interrupt, depending on OS), and so on. These could be in the same driver as directly handles the hardware (which means a lot of code replication) or in another driver layered on top of the first. Most such functions are terminal independent, but there's a fuzzy edge where we want (for example) character erase to operate differently on screen-based terminals (output backspace, overwrite with space, backspace) than on hardcopy (output backslash, characters being erased, backslash). That requires some knowledge of the terminal type, but it generally falls short of needing to know the explicit type, merely what it can do.



            The unqualified term "terminal driver" generally refers to the above level of interface.



            Once you get to details that are (or were at the time) highly terminal-specific, such as how to move the cursor around a screen, those are not in a driver. Early on, in my personal experience around 1980, application code would need to include knowledge of specific terminal types. This wasn't too burdensome if you were writing code for DEC since there were basically only 2 main types to deal with: VT52 and VT100, with minor details such as whether the particular VT1xx model had programmable LEDs or not. However, it was burdensome enough such that eventually common libraries would show up: SMG ("screen management") for VMS being an example.



            So: to sum up:




            • Kernel driver handles specific hardware device independent of terminal type

            • Kernel driver handles common user-interaction functions largely independent of terminal type

            • User-mode libraries can implement mapping from generic to type-specific operations

            • Application code can use such libraries when available or do it all itself






            share|improve this answer
























            • Great, that comes closest to the answer I was looking for. So, as an application, you don't get every character that the user types, such as Ctrl-C, Ctrl-U, Backspace, Delete, etc, these are handled by the kernel driver (the one in the second layer in your model), but you get entire lines from this driver (probably, when a newline or carriage return is received from the keyboard). Is this correct?

              – weibeld
              Jan 21 at 17:24













            • Except, I think, if you are an application like vi, which really must get every character that the user presses as he/she does it. In this case, you must somehow be able to instruct the driver to not do any processing and pass you through every character right away as it is received, right?

              – weibeld
              Jan 21 at 17:29













            • Generally, the app doesn't want to have to deal with things like line erase (ctrl/u) so it is happy to let the driver deal with it, and generally, the application has a line-oriented interface, so waiting until a complete line is available is appropriate - which happens when the return key ("enter" is a PC-keyboard thing) or any other designated end-of-input character is typed. However, an app may elect to do all of that itself, and if it's really screen-driven, you may want to do some of it yourself to keep the screen pretty.

              – another-dave
              Jan 21 at 17:32











            • It's a mode setting in the terminal driver (i.e., you open a channel to the terminal and tell the driver how you want to use it) whether it's line or character oriented. Also, you get to choose whether you want the driver to echo input or you will do it. The terminal driver is likely the most complex driver in that sort of (non-graphical) OS.

              – another-dave
              Jan 21 at 17:35











            • Ok, that makes it clearer. So, it was in general the same principle as TTY on UNIX?

              – weibeld
              Jan 21 at 17:51



















            4














            Two more slightly different situations from the past (well, everything in Retrocomputing is from the past...):



            3270 Emulation



            When I was at the University of Maryland, College Park in the early 1980s, there were some Vaxes, a Univac 1100/80 and some other non-IBM large systems, and there were some micros (my first networking course was on the then brand new IBM AT). But the bulk of the CS courses, the primary email system, etc. was all on IBM mainframes. However, except for system consoles (not accessible to undergrads) and a handful of experimental systems, we had no IBM terminals. There were some Decwriters but most of the terminals were ADM3As and similar video terminals, many (not all) running on the mainframes with a 3270 emulation. One day I was chatting with someone online and lamenting that my wonderful Wyse 100 was limited to glass TTY operation on the mainframes. Soon enough, I was down in the bowels of the CS building with my Wyse 100 and a few hours later it was working in 3270 emulation mode. It turns out they had an IBM Series/1 set up as a terminal/protocol server and it handled all the translation needed - whether a VT52 or an ADM3A or Wyse 100 or whatever. Unlike a lot of terminal drivers, this had to do everything on both input and output. Every function key, cursor key, etc. was translated, even if it was a multi-character key, into an equivalent 3270 code. The Series/1 maintained a screen buffer for each connected terminal and would send blocks of data to the mainframe when appropriate. That also allowed for screen redraw, which was useful in the days of sometimes flaky modem connections. As far as the mainframe was concerned, everything was either a full-blown 3270 or a plain TTY that only supported CR/LF/BS.



            Concurrent DOS



            Digital Research Concurrent DOS was the successor to MP/M-86 (which in turn was the 16-bit version of MP/M which was the multiuser version of CP/M). As with all those previous operating systems, most software had to manage its own "terminal drivers" in whatever way it chose to do so (as explained in other answers), with the operating system handling just the byte-level I/O (baud rate, parity, handshaking, etc.). However, Concurrent DOS added an IBM PC emulation mode using the magic of the 80386 processor (which could run multiple simulated 8086 sessions, each accessing 1 Meg. of RAM, etc., and could also trap any video memory accesses) and terminals such as the Wyse 60 with a "PC Mode" emulation. The PC Mode emulation sent keys as the scan codes normally sent from an IBM PC-compatible keyboard, thus allowing for full compatibility with software that understands the cursor keys, function keys, etc.as well as capturing "key down" vs. "key up" as needed for full interactive use of certain applications. The end result was a nearly complete monochrome text-mode (there was a color version at one time as well, but far less popular) on dozens of terminals on a single system (80386, 80486, I think I went as far as Pentium Pro before networked cheap computers became more practical). In this particular case, the operating system handled all the differences between terminal types. In reality, there were only a few relevant terminal types as taking a VT100 or ADM3A and trying to use it in PC Mode would be extremely limiting and have a number of problems. But at least for a small group of terminal types, this was a situation where the operating system truly did have terminal drivers and did not leave the configuration to the application at all. The applications - whether CP/M-86 or MS-DOS, whether using OS calls for I/O or blindly writing to video memory - could not tell which of the various "PC Mode" terminals (with their minor variations) was actually being used.






            share|improve this answer































              4














              I guess that's a field one can come up with many views - and all presented answers so far give a valid view with lots of additional information. This is intended to break it down to a more general statements:




              • No, at the core no OS offers terminal drivers. Just serial (or whatever) line drivers handling bare communication to a device connected. Input (and output) is mainly on a character by character base (mainframes do differ) This is also often called RAW mode.


              • Many OS offer (very limited) on functionality for line editing and some escape functions (like program or input abort or escape to OS level). Here input was not on a character basis, but a whole line at once. Examples would be MS-DOS or CP/M function 0Ah. In some way this could be called a driver function. Other systems delegated this into user side libraries. This is usually called Cooked mode. (*1)


              • Within the 'world' of a single provider (like DEC or IBM) terminal codes where usually kept upward compatible, so programmers just used the known sequences to control terminal output, marking a certain terminal as minimum requirement.



              • In heterogenous environments developers soon added tools based on databases assigning to be used code sequences to generalized (virtual) functions. Depending on the program model this was done




                • by calls into the data base handler for each occurrence when produced, or

                • by inserting virtual codes into a buffered output and then having the whole message translated into a message the terminal would understand.


                The eventually most prominent implementation here might be Unix' Termcap. A simple text data base structured by terminal-identifier and function-identifier.



              • In the mainframe world existed some rather primitive OS side drivers for terminal agnostic handling of output, usually limited to things like line feed highlighting and locking/unlocking of input areas.



              Bottom Line: Terminals were in most cases simple character based interfaces with usually no higher level support for output and optional (and rather minimal) support for input handling.





              *1 - A few systems/libraries also offered something that could be called Rare mode where operation was character based, but certain, single character codes would be caught and interpreted before (or instead of) handed to the application.






              share|improve this answer

































                3














                The DEC VT100 itself did not have a driver. When you connect a terminal like a VT100 to a serial port it was a just tty device.



                VAX/VMS used a utility to configure devices for the operating system. As a Field Engineer, I had to run the utility after adding a new controller like serial line multiplexer to a VAX system or MicroVAX. This was followed by reboot. That was all of the driver configuration that was done. So the answer is that yes a new driver was configured, but it was built in to the OS and if it was the first controller of a given type it usually was automatically configured. If it was the second controller of a given type an address and an interrupt vector had to be assigned.



                There wasn't the plethora of devices that there are today on PC's. There were controllers made by other companies, especially disk controllers, but they emulated native DEC controllers.






                share|improve this answer































                  2














                  We have to distinguish between different cases, but in most cases the answer seems to be "no":





                  • In "early" systems (like the Altair 680 in home computing or 1960s professional computers) programs simply wrote bytes to the serial port and they read bytes from there.



                    In fact, such machines often did not even have an operating system.



                    If you used VT-100 (as an example), your application had to be written in a way that VT-100 compatible output was written to the terminal and that the application could understand VT-100 compatible input.




                  • Using Linux (the same is true for Solaris; I'm not sure about other OSs) on modern computers have an operating system with a driver for the RS-232 hardware; but there is no driver for VT-100 or similar.



                    Just like on "early" systems the application has to communicate in a VT-100-compatible way.



                    However there are some libraries (e.g. "ncurses") that can be used by the applications. These libraries provide functions that "translate" "high-level" commands (like: "move the cursor to the upper left corner of the screen") into the correct byte sequences for a lot of different terminal types (e.g. VT-100, xTerm, ...).



                    Please note that these are libraries, not drivers. At least in Linux such libraries are handled completely on application level; the OS kernel does not know about the existence of libraries at all.




                  • Theoretically it would be possible to provide terminal support on OS level. In this case a driver for a certain terminal type (e.g. a VT-100 driver) would be necessary.



                    I doubt that such an OS is currently existing.








                  share|improve this answer
























                  • "These libraries provide functions that "translate" "high-level" commands into the correct byte sequences for a lot of different terminal types." So who do libraries like ncurses talk to, to send these commands to the terminal? Directly to the RS-232 driver?

                    – weibeld
                    Jan 21 at 16:00













                  • Ncurses sends the output to the "standard output". This can be some port (such as a serial port, the screen, a printer ...), some network connection, a file or another application (e.g. a command line console window).

                    – Martin Rosenau
                    Jan 21 at 16:03











                  • Ok. So you could basically "plug in" a terminal to a computer, like you can plug in today a monitor or a keyboard to a desktop computer, no drivers needed?

                    – weibeld
                    Jan 21 at 16:21











                  • @weibeld yes, and you still can ;-).

                    – Stephen Kitt
                    Jan 21 at 16:27











                  • @weibeld This is a simple way to have many users on a single machine. Note you will need a lot of serial ports.

                    – Thorbjørn Ravn Andersen
                    Jan 22 at 0:11



















                  2














                  Back in the day I always added the DCL command "$Set Term/Inquire" to my login.com script to let VAX/VMS figure out the type of terminal I was using. I find it interesting that it seems at least once a week, I see references to DEC's VT100/VT101 in modern software.



                  I remember having a directory full of animated txt files and some txt files to make a Dectalk box sing :*)



                  Here are some links:





                  • Ansi everthing


                  • VT100 History and more


                  • Microsoft almost brings back the VT100

                  • XTerm can do a lot!






                  share|improve this answer


























                  • I think in UNIX the TERM environment variable serves exactly the same purpose.

                    – weibeld
                    Jan 22 at 23:21











                  • Well... the Unix environment variable is an attribute of a process, whereas in VMS the result of set terminal /inquire would be a change of an attribute maintained for the serial device. And of course, set term /inquire only worked on DEC's terminals or those that emulated them. Since in practice just about any serial terminal attached to a VMS system would be a DEC terminal or a close emulator, this was acceptable.

                    – Jamie Hanrahan
                    Jan 24 at 3:04











                  Your Answer








                  StackExchange.ready(function() {
                  var channelOptions = {
                  tags: "".split(" "),
                  id: "648"
                  };
                  initTagRenderer("".split(" "), "".split(" "), channelOptions);

                  StackExchange.using("externalEditor", function() {
                  // Have to fire editor after snippets, if snippets enabled
                  if (StackExchange.settings.snippets.snippetsEnabled) {
                  StackExchange.using("snippets", function() {
                  createEditor();
                  });
                  }
                  else {
                  createEditor();
                  }
                  });

                  function createEditor() {
                  StackExchange.prepareEditor({
                  heartbeatType: 'answer',
                  autoActivateHeartbeat: false,
                  convertImagesToLinks: false,
                  noModals: true,
                  showLowRepImageUploadWarning: true,
                  reputationToPostImages: null,
                  bindNavPrevention: true,
                  postfix: "",
                  imageUploader: {
                  brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                  contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                  allowUrls: true
                  },
                  noCode: true, onDemand: true,
                  discardSelector: ".discard-answer"
                  ,immediatelyShowMarkdownHelp:true
                  });


                  }
                  });














                  draft saved

                  draft discarded


















                  StackExchange.ready(
                  function () {
                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f8856%2fdid-terminals-e-g-vt100-require-a-terminal-driver-on-the-host-computer%23new-answer', 'question_page');
                  }
                  );

                  Post as a guest















                  Required, but never shown

























                  8 Answers
                  8






                  active

                  oldest

                  votes








                  8 Answers
                  8






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  26














                  Different terminals didn’t (and don’t) use different kernel-level drivers. In Unix-style systems, the kernel does provide some terminal-related features, called line disciplines and the TTY layer which you mention; there is typically at least a raw line discipline (which doesn’t perform any translation), and a cooked line discipline (which provides more-or-less line-level buffering, handling backspace etc. locally). Anything beyond that is handled inside each individual application, and early applications were hard-coded for specific terminals. (It was also common for applications to be terminal-specific, or support a limited number of terminals, on non-Unix-like operating systems such as CP/M.)



                  However developers quickly realised that it would be useful to share terminal information, such as screen size, escape sequences for various common functions, etc. The first of these is termcap (terminal capability), developed by Bill Joy in 1978 for BSD; terminfo followed in the early eighties.



                  Another layer of libraries provides more advance screen-handling features for programs which require that; the earliest common library of this type was curses, and the library currently used is ncurses.



                  See The TTY demystified for more details.






                  share|improve this answer


























                  • I understand more or less how TTY works on UNIX. So you say that on other computers and OS in the 70's and 80's, it worked in a similar way as today on UNIX?

                    – weibeld
                    Jan 21 at 16:06











                  • Ah no, sorry, I meant that the applications were hard-coded for specific terminals on other systems too, I’ll clarify that.

                    – Stephen Kitt
                    Jan 21 at 16:22






                  • 1





                    @weibeld, This answer assumes that we're talking about terminals whose lowest common denominator is, "able to function like a teletype." If you're talking about IBM 3270-style terminals or something like, then that's a whole different topic.

                    – Solomon Slow
                    Jan 21 at 16:25













                  • @SolomonSlow How is it different? It seems the IBM 3270 is block-oriented, but the block editing is handled in a control unit external to the host computer. So does it still require special handling on the host computer? An IBM 3270 wouldn't work with a computer that works for VT100-style terminals?

                    – weibeld
                    Jan 21 at 16:46






                  • 1





                    I recall having read that in early Unix the tty driver did do one thing, namely handle translation for (dumb) teletypes that did not support lower-case letters. Supposedly this was detected when one typed the username in all-caps at login. The terminal driver would then represent lower-case letters as upper-case and mark up true uppercase letters somehow (with a `` escape, I think).

                    – Henning Makholm
                    Jan 21 at 21:08
















                  26














                  Different terminals didn’t (and don’t) use different kernel-level drivers. In Unix-style systems, the kernel does provide some terminal-related features, called line disciplines and the TTY layer which you mention; there is typically at least a raw line discipline (which doesn’t perform any translation), and a cooked line discipline (which provides more-or-less line-level buffering, handling backspace etc. locally). Anything beyond that is handled inside each individual application, and early applications were hard-coded for specific terminals. (It was also common for applications to be terminal-specific, or support a limited number of terminals, on non-Unix-like operating systems such as CP/M.)



                  However developers quickly realised that it would be useful to share terminal information, such as screen size, escape sequences for various common functions, etc. The first of these is termcap (terminal capability), developed by Bill Joy in 1978 for BSD; terminfo followed in the early eighties.



                  Another layer of libraries provides more advance screen-handling features for programs which require that; the earliest common library of this type was curses, and the library currently used is ncurses.



                  See The TTY demystified for more details.






                  share|improve this answer


























                  • I understand more or less how TTY works on UNIX. So you say that on other computers and OS in the 70's and 80's, it worked in a similar way as today on UNIX?

                    – weibeld
                    Jan 21 at 16:06











                  • Ah no, sorry, I meant that the applications were hard-coded for specific terminals on other systems too, I’ll clarify that.

                    – Stephen Kitt
                    Jan 21 at 16:22






                  • 1





                    @weibeld, This answer assumes that we're talking about terminals whose lowest common denominator is, "able to function like a teletype." If you're talking about IBM 3270-style terminals or something like, then that's a whole different topic.

                    – Solomon Slow
                    Jan 21 at 16:25













                  • @SolomonSlow How is it different? It seems the IBM 3270 is block-oriented, but the block editing is handled in a control unit external to the host computer. So does it still require special handling on the host computer? An IBM 3270 wouldn't work with a computer that works for VT100-style terminals?

                    – weibeld
                    Jan 21 at 16:46






                  • 1





                    I recall having read that in early Unix the tty driver did do one thing, namely handle translation for (dumb) teletypes that did not support lower-case letters. Supposedly this was detected when one typed the username in all-caps at login. The terminal driver would then represent lower-case letters as upper-case and mark up true uppercase letters somehow (with a `` escape, I think).

                    – Henning Makholm
                    Jan 21 at 21:08














                  26












                  26








                  26







                  Different terminals didn’t (and don’t) use different kernel-level drivers. In Unix-style systems, the kernel does provide some terminal-related features, called line disciplines and the TTY layer which you mention; there is typically at least a raw line discipline (which doesn’t perform any translation), and a cooked line discipline (which provides more-or-less line-level buffering, handling backspace etc. locally). Anything beyond that is handled inside each individual application, and early applications were hard-coded for specific terminals. (It was also common for applications to be terminal-specific, or support a limited number of terminals, on non-Unix-like operating systems such as CP/M.)



                  However developers quickly realised that it would be useful to share terminal information, such as screen size, escape sequences for various common functions, etc. The first of these is termcap (terminal capability), developed by Bill Joy in 1978 for BSD; terminfo followed in the early eighties.



                  Another layer of libraries provides more advance screen-handling features for programs which require that; the earliest common library of this type was curses, and the library currently used is ncurses.



                  See The TTY demystified for more details.






                  share|improve this answer















                  Different terminals didn’t (and don’t) use different kernel-level drivers. In Unix-style systems, the kernel does provide some terminal-related features, called line disciplines and the TTY layer which you mention; there is typically at least a raw line discipline (which doesn’t perform any translation), and a cooked line discipline (which provides more-or-less line-level buffering, handling backspace etc. locally). Anything beyond that is handled inside each individual application, and early applications were hard-coded for specific terminals. (It was also common for applications to be terminal-specific, or support a limited number of terminals, on non-Unix-like operating systems such as CP/M.)



                  However developers quickly realised that it would be useful to share terminal information, such as screen size, escape sequences for various common functions, etc. The first of these is termcap (terminal capability), developed by Bill Joy in 1978 for BSD; terminfo followed in the early eighties.



                  Another layer of libraries provides more advance screen-handling features for programs which require that; the earliest common library of this type was curses, and the library currently used is ncurses.



                  See The TTY demystified for more details.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Jan 21 at 16:23

























                  answered Jan 21 at 15:36









                  Stephen KittStephen Kitt

                  38.2k8154167




                  38.2k8154167













                  • I understand more or less how TTY works on UNIX. So you say that on other computers and OS in the 70's and 80's, it worked in a similar way as today on UNIX?

                    – weibeld
                    Jan 21 at 16:06











                  • Ah no, sorry, I meant that the applications were hard-coded for specific terminals on other systems too, I’ll clarify that.

                    – Stephen Kitt
                    Jan 21 at 16:22






                  • 1





                    @weibeld, This answer assumes that we're talking about terminals whose lowest common denominator is, "able to function like a teletype." If you're talking about IBM 3270-style terminals or something like, then that's a whole different topic.

                    – Solomon Slow
                    Jan 21 at 16:25













                  • @SolomonSlow How is it different? It seems the IBM 3270 is block-oriented, but the block editing is handled in a control unit external to the host computer. So does it still require special handling on the host computer? An IBM 3270 wouldn't work with a computer that works for VT100-style terminals?

                    – weibeld
                    Jan 21 at 16:46






                  • 1





                    I recall having read that in early Unix the tty driver did do one thing, namely handle translation for (dumb) teletypes that did not support lower-case letters. Supposedly this was detected when one typed the username in all-caps at login. The terminal driver would then represent lower-case letters as upper-case and mark up true uppercase letters somehow (with a `` escape, I think).

                    – Henning Makholm
                    Jan 21 at 21:08



















                  • I understand more or less how TTY works on UNIX. So you say that on other computers and OS in the 70's and 80's, it worked in a similar way as today on UNIX?

                    – weibeld
                    Jan 21 at 16:06











                  • Ah no, sorry, I meant that the applications were hard-coded for specific terminals on other systems too, I’ll clarify that.

                    – Stephen Kitt
                    Jan 21 at 16:22






                  • 1





                    @weibeld, This answer assumes that we're talking about terminals whose lowest common denominator is, "able to function like a teletype." If you're talking about IBM 3270-style terminals or something like, then that's a whole different topic.

                    – Solomon Slow
                    Jan 21 at 16:25













                  • @SolomonSlow How is it different? It seems the IBM 3270 is block-oriented, but the block editing is handled in a control unit external to the host computer. So does it still require special handling on the host computer? An IBM 3270 wouldn't work with a computer that works for VT100-style terminals?

                    – weibeld
                    Jan 21 at 16:46






                  • 1





                    I recall having read that in early Unix the tty driver did do one thing, namely handle translation for (dumb) teletypes that did not support lower-case letters. Supposedly this was detected when one typed the username in all-caps at login. The terminal driver would then represent lower-case letters as upper-case and mark up true uppercase letters somehow (with a `` escape, I think).

                    – Henning Makholm
                    Jan 21 at 21:08

















                  I understand more or less how TTY works on UNIX. So you say that on other computers and OS in the 70's and 80's, it worked in a similar way as today on UNIX?

                  – weibeld
                  Jan 21 at 16:06





                  I understand more or less how TTY works on UNIX. So you say that on other computers and OS in the 70's and 80's, it worked in a similar way as today on UNIX?

                  – weibeld
                  Jan 21 at 16:06













                  Ah no, sorry, I meant that the applications were hard-coded for specific terminals on other systems too, I’ll clarify that.

                  – Stephen Kitt
                  Jan 21 at 16:22





                  Ah no, sorry, I meant that the applications were hard-coded for specific terminals on other systems too, I’ll clarify that.

                  – Stephen Kitt
                  Jan 21 at 16:22




                  1




                  1





                  @weibeld, This answer assumes that we're talking about terminals whose lowest common denominator is, "able to function like a teletype." If you're talking about IBM 3270-style terminals or something like, then that's a whole different topic.

                  – Solomon Slow
                  Jan 21 at 16:25







                  @weibeld, This answer assumes that we're talking about terminals whose lowest common denominator is, "able to function like a teletype." If you're talking about IBM 3270-style terminals or something like, then that's a whole different topic.

                  – Solomon Slow
                  Jan 21 at 16:25















                  @SolomonSlow How is it different? It seems the IBM 3270 is block-oriented, but the block editing is handled in a control unit external to the host computer. So does it still require special handling on the host computer? An IBM 3270 wouldn't work with a computer that works for VT100-style terminals?

                  – weibeld
                  Jan 21 at 16:46





                  @SolomonSlow How is it different? It seems the IBM 3270 is block-oriented, but the block editing is handled in a control unit external to the host computer. So does it still require special handling on the host computer? An IBM 3270 wouldn't work with a computer that works for VT100-style terminals?

                  – weibeld
                  Jan 21 at 16:46




                  1




                  1





                  I recall having read that in early Unix the tty driver did do one thing, namely handle translation for (dumb) teletypes that did not support lower-case letters. Supposedly this was detected when one typed the username in all-caps at login. The terminal driver would then represent lower-case letters as upper-case and mark up true uppercase letters somehow (with a `` escape, I think).

                  – Henning Makholm
                  Jan 21 at 21:08





                  I recall having read that in early Unix the tty driver did do one thing, namely handle translation for (dumb) teletypes that did not support lower-case letters. Supposedly this was detected when one typed the username in all-caps at login. The terminal driver would then represent lower-case letters as upper-case and mark up true uppercase letters somehow (with a `` escape, I think).

                  – Henning Makholm
                  Jan 21 at 21:08











                  10














                  This was not done by a “driver” at the OS level as you are thinking of it.



                  In Unix, there were drivers that dealt with the RS232 interface and these were surfaced as /dev/tty* devices and dealt with things like speed, echo, etc.



                  As for escape sequences controlling the display of the terminal, that is not done at the “driver” level as you are thinking of it.



                  This was done at the application level through a library like curses, and escape sequences were defined in a database like /etc/termcap or later, terminfo.



                  Some apps used curses, others used termcap/terminfo to get the sequences but used their own code instead of curses. Some even had their own version of a termcap.



                  (Termcap = Terminal Capabilities or something like that)



                  Even though there was an ANSI standard for escape sequences, there were still variations and quirks, and some terminals simply used an entirely different scheme (like Wyse 50).






                  share|improve this answer




























                    10














                    This was not done by a “driver” at the OS level as you are thinking of it.



                    In Unix, there were drivers that dealt with the RS232 interface and these were surfaced as /dev/tty* devices and dealt with things like speed, echo, etc.



                    As for escape sequences controlling the display of the terminal, that is not done at the “driver” level as you are thinking of it.



                    This was done at the application level through a library like curses, and escape sequences were defined in a database like /etc/termcap or later, terminfo.



                    Some apps used curses, others used termcap/terminfo to get the sequences but used their own code instead of curses. Some even had their own version of a termcap.



                    (Termcap = Terminal Capabilities or something like that)



                    Even though there was an ANSI standard for escape sequences, there were still variations and quirks, and some terminals simply used an entirely different scheme (like Wyse 50).






                    share|improve this answer


























                      10












                      10








                      10







                      This was not done by a “driver” at the OS level as you are thinking of it.



                      In Unix, there were drivers that dealt with the RS232 interface and these were surfaced as /dev/tty* devices and dealt with things like speed, echo, etc.



                      As for escape sequences controlling the display of the terminal, that is not done at the “driver” level as you are thinking of it.



                      This was done at the application level through a library like curses, and escape sequences were defined in a database like /etc/termcap or later, terminfo.



                      Some apps used curses, others used termcap/terminfo to get the sequences but used their own code instead of curses. Some even had their own version of a termcap.



                      (Termcap = Terminal Capabilities or something like that)



                      Even though there was an ANSI standard for escape sequences, there were still variations and quirks, and some terminals simply used an entirely different scheme (like Wyse 50).






                      share|improve this answer













                      This was not done by a “driver” at the OS level as you are thinking of it.



                      In Unix, there were drivers that dealt with the RS232 interface and these were surfaced as /dev/tty* devices and dealt with things like speed, echo, etc.



                      As for escape sequences controlling the display of the terminal, that is not done at the “driver” level as you are thinking of it.



                      This was done at the application level through a library like curses, and escape sequences were defined in a database like /etc/termcap or later, terminfo.



                      Some apps used curses, others used termcap/terminfo to get the sequences but used their own code instead of curses. Some even had their own version of a termcap.



                      (Termcap = Terminal Capabilities or something like that)



                      Even though there was an ANSI standard for escape sequences, there were still variations and quirks, and some terminals simply used an entirely different scheme (like Wyse 50).







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Jan 21 at 15:29









                      mannaggiamannaggia

                      1,211158




                      1,211158























                          8














                          "It depends".



                          I'm answering this in the context of DEC timesharing systems, since that's the natural habitat of a DEC VT100.



                          There's a hardware device such as a DZ11 terminal multiplexer (8 lines) that controls terminal lines by some physical protocol, such as RS232 or 20mA current loop. The physical protocol is a matter for the hardware. But the OS needs a driver for the hardware device.



                          The driver does not know the terminal type, but it will contain a variety of settings that depend on the terminal or settings in the terminal: bits per character, parity use, required number of stop bits, and so on.



                          Over that, but still in some driver, there's common functionality that all terminals need: character/line erase, special keys to generate signals (like ctrl/c = abort or interrupt, depending on OS), and so on. These could be in the same driver as directly handles the hardware (which means a lot of code replication) or in another driver layered on top of the first. Most such functions are terminal independent, but there's a fuzzy edge where we want (for example) character erase to operate differently on screen-based terminals (output backspace, overwrite with space, backspace) than on hardcopy (output backslash, characters being erased, backslash). That requires some knowledge of the terminal type, but it generally falls short of needing to know the explicit type, merely what it can do.



                          The unqualified term "terminal driver" generally refers to the above level of interface.



                          Once you get to details that are (or were at the time) highly terminal-specific, such as how to move the cursor around a screen, those are not in a driver. Early on, in my personal experience around 1980, application code would need to include knowledge of specific terminal types. This wasn't too burdensome if you were writing code for DEC since there were basically only 2 main types to deal with: VT52 and VT100, with minor details such as whether the particular VT1xx model had programmable LEDs or not. However, it was burdensome enough such that eventually common libraries would show up: SMG ("screen management") for VMS being an example.



                          So: to sum up:




                          • Kernel driver handles specific hardware device independent of terminal type

                          • Kernel driver handles common user-interaction functions largely independent of terminal type

                          • User-mode libraries can implement mapping from generic to type-specific operations

                          • Application code can use such libraries when available or do it all itself






                          share|improve this answer
























                          • Great, that comes closest to the answer I was looking for. So, as an application, you don't get every character that the user types, such as Ctrl-C, Ctrl-U, Backspace, Delete, etc, these are handled by the kernel driver (the one in the second layer in your model), but you get entire lines from this driver (probably, when a newline or carriage return is received from the keyboard). Is this correct?

                            – weibeld
                            Jan 21 at 17:24













                          • Except, I think, if you are an application like vi, which really must get every character that the user presses as he/she does it. In this case, you must somehow be able to instruct the driver to not do any processing and pass you through every character right away as it is received, right?

                            – weibeld
                            Jan 21 at 17:29













                          • Generally, the app doesn't want to have to deal with things like line erase (ctrl/u) so it is happy to let the driver deal with it, and generally, the application has a line-oriented interface, so waiting until a complete line is available is appropriate - which happens when the return key ("enter" is a PC-keyboard thing) or any other designated end-of-input character is typed. However, an app may elect to do all of that itself, and if it's really screen-driven, you may want to do some of it yourself to keep the screen pretty.

                            – another-dave
                            Jan 21 at 17:32











                          • It's a mode setting in the terminal driver (i.e., you open a channel to the terminal and tell the driver how you want to use it) whether it's line or character oriented. Also, you get to choose whether you want the driver to echo input or you will do it. The terminal driver is likely the most complex driver in that sort of (non-graphical) OS.

                            – another-dave
                            Jan 21 at 17:35











                          • Ok, that makes it clearer. So, it was in general the same principle as TTY on UNIX?

                            – weibeld
                            Jan 21 at 17:51
















                          8














                          "It depends".



                          I'm answering this in the context of DEC timesharing systems, since that's the natural habitat of a DEC VT100.



                          There's a hardware device such as a DZ11 terminal multiplexer (8 lines) that controls terminal lines by some physical protocol, such as RS232 or 20mA current loop. The physical protocol is a matter for the hardware. But the OS needs a driver for the hardware device.



                          The driver does not know the terminal type, but it will contain a variety of settings that depend on the terminal or settings in the terminal: bits per character, parity use, required number of stop bits, and so on.



                          Over that, but still in some driver, there's common functionality that all terminals need: character/line erase, special keys to generate signals (like ctrl/c = abort or interrupt, depending on OS), and so on. These could be in the same driver as directly handles the hardware (which means a lot of code replication) or in another driver layered on top of the first. Most such functions are terminal independent, but there's a fuzzy edge where we want (for example) character erase to operate differently on screen-based terminals (output backspace, overwrite with space, backspace) than on hardcopy (output backslash, characters being erased, backslash). That requires some knowledge of the terminal type, but it generally falls short of needing to know the explicit type, merely what it can do.



                          The unqualified term "terminal driver" generally refers to the above level of interface.



                          Once you get to details that are (or were at the time) highly terminal-specific, such as how to move the cursor around a screen, those are not in a driver. Early on, in my personal experience around 1980, application code would need to include knowledge of specific terminal types. This wasn't too burdensome if you were writing code for DEC since there were basically only 2 main types to deal with: VT52 and VT100, with minor details such as whether the particular VT1xx model had programmable LEDs or not. However, it was burdensome enough such that eventually common libraries would show up: SMG ("screen management") for VMS being an example.



                          So: to sum up:




                          • Kernel driver handles specific hardware device independent of terminal type

                          • Kernel driver handles common user-interaction functions largely independent of terminal type

                          • User-mode libraries can implement mapping from generic to type-specific operations

                          • Application code can use such libraries when available or do it all itself






                          share|improve this answer
























                          • Great, that comes closest to the answer I was looking for. So, as an application, you don't get every character that the user types, such as Ctrl-C, Ctrl-U, Backspace, Delete, etc, these are handled by the kernel driver (the one in the second layer in your model), but you get entire lines from this driver (probably, when a newline or carriage return is received from the keyboard). Is this correct?

                            – weibeld
                            Jan 21 at 17:24













                          • Except, I think, if you are an application like vi, which really must get every character that the user presses as he/she does it. In this case, you must somehow be able to instruct the driver to not do any processing and pass you through every character right away as it is received, right?

                            – weibeld
                            Jan 21 at 17:29













                          • Generally, the app doesn't want to have to deal with things like line erase (ctrl/u) so it is happy to let the driver deal with it, and generally, the application has a line-oriented interface, so waiting until a complete line is available is appropriate - which happens when the return key ("enter" is a PC-keyboard thing) or any other designated end-of-input character is typed. However, an app may elect to do all of that itself, and if it's really screen-driven, you may want to do some of it yourself to keep the screen pretty.

                            – another-dave
                            Jan 21 at 17:32











                          • It's a mode setting in the terminal driver (i.e., you open a channel to the terminal and tell the driver how you want to use it) whether it's line or character oriented. Also, you get to choose whether you want the driver to echo input or you will do it. The terminal driver is likely the most complex driver in that sort of (non-graphical) OS.

                            – another-dave
                            Jan 21 at 17:35











                          • Ok, that makes it clearer. So, it was in general the same principle as TTY on UNIX?

                            – weibeld
                            Jan 21 at 17:51














                          8












                          8








                          8







                          "It depends".



                          I'm answering this in the context of DEC timesharing systems, since that's the natural habitat of a DEC VT100.



                          There's a hardware device such as a DZ11 terminal multiplexer (8 lines) that controls terminal lines by some physical protocol, such as RS232 or 20mA current loop. The physical protocol is a matter for the hardware. But the OS needs a driver for the hardware device.



                          The driver does not know the terminal type, but it will contain a variety of settings that depend on the terminal or settings in the terminal: bits per character, parity use, required number of stop bits, and so on.



                          Over that, but still in some driver, there's common functionality that all terminals need: character/line erase, special keys to generate signals (like ctrl/c = abort or interrupt, depending on OS), and so on. These could be in the same driver as directly handles the hardware (which means a lot of code replication) or in another driver layered on top of the first. Most such functions are terminal independent, but there's a fuzzy edge where we want (for example) character erase to operate differently on screen-based terminals (output backspace, overwrite with space, backspace) than on hardcopy (output backslash, characters being erased, backslash). That requires some knowledge of the terminal type, but it generally falls short of needing to know the explicit type, merely what it can do.



                          The unqualified term "terminal driver" generally refers to the above level of interface.



                          Once you get to details that are (or were at the time) highly terminal-specific, such as how to move the cursor around a screen, those are not in a driver. Early on, in my personal experience around 1980, application code would need to include knowledge of specific terminal types. This wasn't too burdensome if you were writing code for DEC since there were basically only 2 main types to deal with: VT52 and VT100, with minor details such as whether the particular VT1xx model had programmable LEDs or not. However, it was burdensome enough such that eventually common libraries would show up: SMG ("screen management") for VMS being an example.



                          So: to sum up:




                          • Kernel driver handles specific hardware device independent of terminal type

                          • Kernel driver handles common user-interaction functions largely independent of terminal type

                          • User-mode libraries can implement mapping from generic to type-specific operations

                          • Application code can use such libraries when available or do it all itself






                          share|improve this answer













                          "It depends".



                          I'm answering this in the context of DEC timesharing systems, since that's the natural habitat of a DEC VT100.



                          There's a hardware device such as a DZ11 terminal multiplexer (8 lines) that controls terminal lines by some physical protocol, such as RS232 or 20mA current loop. The physical protocol is a matter for the hardware. But the OS needs a driver for the hardware device.



                          The driver does not know the terminal type, but it will contain a variety of settings that depend on the terminal or settings in the terminal: bits per character, parity use, required number of stop bits, and so on.



                          Over that, but still in some driver, there's common functionality that all terminals need: character/line erase, special keys to generate signals (like ctrl/c = abort or interrupt, depending on OS), and so on. These could be in the same driver as directly handles the hardware (which means a lot of code replication) or in another driver layered on top of the first. Most such functions are terminal independent, but there's a fuzzy edge where we want (for example) character erase to operate differently on screen-based terminals (output backspace, overwrite with space, backspace) than on hardcopy (output backslash, characters being erased, backslash). That requires some knowledge of the terminal type, but it generally falls short of needing to know the explicit type, merely what it can do.



                          The unqualified term "terminal driver" generally refers to the above level of interface.



                          Once you get to details that are (or were at the time) highly terminal-specific, such as how to move the cursor around a screen, those are not in a driver. Early on, in my personal experience around 1980, application code would need to include knowledge of specific terminal types. This wasn't too burdensome if you were writing code for DEC since there were basically only 2 main types to deal with: VT52 and VT100, with minor details such as whether the particular VT1xx model had programmable LEDs or not. However, it was burdensome enough such that eventually common libraries would show up: SMG ("screen management") for VMS being an example.



                          So: to sum up:




                          • Kernel driver handles specific hardware device independent of terminal type

                          • Kernel driver handles common user-interaction functions largely independent of terminal type

                          • User-mode libraries can implement mapping from generic to type-specific operations

                          • Application code can use such libraries when available or do it all itself







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jan 21 at 16:49









                          another-daveanother-dave

                          1,047110




                          1,047110













                          • Great, that comes closest to the answer I was looking for. So, as an application, you don't get every character that the user types, such as Ctrl-C, Ctrl-U, Backspace, Delete, etc, these are handled by the kernel driver (the one in the second layer in your model), but you get entire lines from this driver (probably, when a newline or carriage return is received from the keyboard). Is this correct?

                            – weibeld
                            Jan 21 at 17:24













                          • Except, I think, if you are an application like vi, which really must get every character that the user presses as he/she does it. In this case, you must somehow be able to instruct the driver to not do any processing and pass you through every character right away as it is received, right?

                            – weibeld
                            Jan 21 at 17:29













                          • Generally, the app doesn't want to have to deal with things like line erase (ctrl/u) so it is happy to let the driver deal with it, and generally, the application has a line-oriented interface, so waiting until a complete line is available is appropriate - which happens when the return key ("enter" is a PC-keyboard thing) or any other designated end-of-input character is typed. However, an app may elect to do all of that itself, and if it's really screen-driven, you may want to do some of it yourself to keep the screen pretty.

                            – another-dave
                            Jan 21 at 17:32











                          • It's a mode setting in the terminal driver (i.e., you open a channel to the terminal and tell the driver how you want to use it) whether it's line or character oriented. Also, you get to choose whether you want the driver to echo input or you will do it. The terminal driver is likely the most complex driver in that sort of (non-graphical) OS.

                            – another-dave
                            Jan 21 at 17:35











                          • Ok, that makes it clearer. So, it was in general the same principle as TTY on UNIX?

                            – weibeld
                            Jan 21 at 17:51



















                          • Great, that comes closest to the answer I was looking for. So, as an application, you don't get every character that the user types, such as Ctrl-C, Ctrl-U, Backspace, Delete, etc, these are handled by the kernel driver (the one in the second layer in your model), but you get entire lines from this driver (probably, when a newline or carriage return is received from the keyboard). Is this correct?

                            – weibeld
                            Jan 21 at 17:24













                          • Except, I think, if you are an application like vi, which really must get every character that the user presses as he/she does it. In this case, you must somehow be able to instruct the driver to not do any processing and pass you through every character right away as it is received, right?

                            – weibeld
                            Jan 21 at 17:29













                          • Generally, the app doesn't want to have to deal with things like line erase (ctrl/u) so it is happy to let the driver deal with it, and generally, the application has a line-oriented interface, so waiting until a complete line is available is appropriate - which happens when the return key ("enter" is a PC-keyboard thing) or any other designated end-of-input character is typed. However, an app may elect to do all of that itself, and if it's really screen-driven, you may want to do some of it yourself to keep the screen pretty.

                            – another-dave
                            Jan 21 at 17:32











                          • It's a mode setting in the terminal driver (i.e., you open a channel to the terminal and tell the driver how you want to use it) whether it's line or character oriented. Also, you get to choose whether you want the driver to echo input or you will do it. The terminal driver is likely the most complex driver in that sort of (non-graphical) OS.

                            – another-dave
                            Jan 21 at 17:35











                          • Ok, that makes it clearer. So, it was in general the same principle as TTY on UNIX?

                            – weibeld
                            Jan 21 at 17:51

















                          Great, that comes closest to the answer I was looking for. So, as an application, you don't get every character that the user types, such as Ctrl-C, Ctrl-U, Backspace, Delete, etc, these are handled by the kernel driver (the one in the second layer in your model), but you get entire lines from this driver (probably, when a newline or carriage return is received from the keyboard). Is this correct?

                          – weibeld
                          Jan 21 at 17:24







                          Great, that comes closest to the answer I was looking for. So, as an application, you don't get every character that the user types, such as Ctrl-C, Ctrl-U, Backspace, Delete, etc, these are handled by the kernel driver (the one in the second layer in your model), but you get entire lines from this driver (probably, when a newline or carriage return is received from the keyboard). Is this correct?

                          – weibeld
                          Jan 21 at 17:24















                          Except, I think, if you are an application like vi, which really must get every character that the user presses as he/she does it. In this case, you must somehow be able to instruct the driver to not do any processing and pass you through every character right away as it is received, right?

                          – weibeld
                          Jan 21 at 17:29







                          Except, I think, if you are an application like vi, which really must get every character that the user presses as he/she does it. In this case, you must somehow be able to instruct the driver to not do any processing and pass you through every character right away as it is received, right?

                          – weibeld
                          Jan 21 at 17:29















                          Generally, the app doesn't want to have to deal with things like line erase (ctrl/u) so it is happy to let the driver deal with it, and generally, the application has a line-oriented interface, so waiting until a complete line is available is appropriate - which happens when the return key ("enter" is a PC-keyboard thing) or any other designated end-of-input character is typed. However, an app may elect to do all of that itself, and if it's really screen-driven, you may want to do some of it yourself to keep the screen pretty.

                          – another-dave
                          Jan 21 at 17:32





                          Generally, the app doesn't want to have to deal with things like line erase (ctrl/u) so it is happy to let the driver deal with it, and generally, the application has a line-oriented interface, so waiting until a complete line is available is appropriate - which happens when the return key ("enter" is a PC-keyboard thing) or any other designated end-of-input character is typed. However, an app may elect to do all of that itself, and if it's really screen-driven, you may want to do some of it yourself to keep the screen pretty.

                          – another-dave
                          Jan 21 at 17:32













                          It's a mode setting in the terminal driver (i.e., you open a channel to the terminal and tell the driver how you want to use it) whether it's line or character oriented. Also, you get to choose whether you want the driver to echo input or you will do it. The terminal driver is likely the most complex driver in that sort of (non-graphical) OS.

                          – another-dave
                          Jan 21 at 17:35





                          It's a mode setting in the terminal driver (i.e., you open a channel to the terminal and tell the driver how you want to use it) whether it's line or character oriented. Also, you get to choose whether you want the driver to echo input or you will do it. The terminal driver is likely the most complex driver in that sort of (non-graphical) OS.

                          – another-dave
                          Jan 21 at 17:35













                          Ok, that makes it clearer. So, it was in general the same principle as TTY on UNIX?

                          – weibeld
                          Jan 21 at 17:51





                          Ok, that makes it clearer. So, it was in general the same principle as TTY on UNIX?

                          – weibeld
                          Jan 21 at 17:51











                          4














                          Two more slightly different situations from the past (well, everything in Retrocomputing is from the past...):



                          3270 Emulation



                          When I was at the University of Maryland, College Park in the early 1980s, there were some Vaxes, a Univac 1100/80 and some other non-IBM large systems, and there were some micros (my first networking course was on the then brand new IBM AT). But the bulk of the CS courses, the primary email system, etc. was all on IBM mainframes. However, except for system consoles (not accessible to undergrads) and a handful of experimental systems, we had no IBM terminals. There were some Decwriters but most of the terminals were ADM3As and similar video terminals, many (not all) running on the mainframes with a 3270 emulation. One day I was chatting with someone online and lamenting that my wonderful Wyse 100 was limited to glass TTY operation on the mainframes. Soon enough, I was down in the bowels of the CS building with my Wyse 100 and a few hours later it was working in 3270 emulation mode. It turns out they had an IBM Series/1 set up as a terminal/protocol server and it handled all the translation needed - whether a VT52 or an ADM3A or Wyse 100 or whatever. Unlike a lot of terminal drivers, this had to do everything on both input and output. Every function key, cursor key, etc. was translated, even if it was a multi-character key, into an equivalent 3270 code. The Series/1 maintained a screen buffer for each connected terminal and would send blocks of data to the mainframe when appropriate. That also allowed for screen redraw, which was useful in the days of sometimes flaky modem connections. As far as the mainframe was concerned, everything was either a full-blown 3270 or a plain TTY that only supported CR/LF/BS.



                          Concurrent DOS



                          Digital Research Concurrent DOS was the successor to MP/M-86 (which in turn was the 16-bit version of MP/M which was the multiuser version of CP/M). As with all those previous operating systems, most software had to manage its own "terminal drivers" in whatever way it chose to do so (as explained in other answers), with the operating system handling just the byte-level I/O (baud rate, parity, handshaking, etc.). However, Concurrent DOS added an IBM PC emulation mode using the magic of the 80386 processor (which could run multiple simulated 8086 sessions, each accessing 1 Meg. of RAM, etc., and could also trap any video memory accesses) and terminals such as the Wyse 60 with a "PC Mode" emulation. The PC Mode emulation sent keys as the scan codes normally sent from an IBM PC-compatible keyboard, thus allowing for full compatibility with software that understands the cursor keys, function keys, etc.as well as capturing "key down" vs. "key up" as needed for full interactive use of certain applications. The end result was a nearly complete monochrome text-mode (there was a color version at one time as well, but far less popular) on dozens of terminals on a single system (80386, 80486, I think I went as far as Pentium Pro before networked cheap computers became more practical). In this particular case, the operating system handled all the differences between terminal types. In reality, there were only a few relevant terminal types as taking a VT100 or ADM3A and trying to use it in PC Mode would be extremely limiting and have a number of problems. But at least for a small group of terminal types, this was a situation where the operating system truly did have terminal drivers and did not leave the configuration to the application at all. The applications - whether CP/M-86 or MS-DOS, whether using OS calls for I/O or blindly writing to video memory - could not tell which of the various "PC Mode" terminals (with their minor variations) was actually being used.






                          share|improve this answer




























                            4














                            Two more slightly different situations from the past (well, everything in Retrocomputing is from the past...):



                            3270 Emulation



                            When I was at the University of Maryland, College Park in the early 1980s, there were some Vaxes, a Univac 1100/80 and some other non-IBM large systems, and there were some micros (my first networking course was on the then brand new IBM AT). But the bulk of the CS courses, the primary email system, etc. was all on IBM mainframes. However, except for system consoles (not accessible to undergrads) and a handful of experimental systems, we had no IBM terminals. There were some Decwriters but most of the terminals were ADM3As and similar video terminals, many (not all) running on the mainframes with a 3270 emulation. One day I was chatting with someone online and lamenting that my wonderful Wyse 100 was limited to glass TTY operation on the mainframes. Soon enough, I was down in the bowels of the CS building with my Wyse 100 and a few hours later it was working in 3270 emulation mode. It turns out they had an IBM Series/1 set up as a terminal/protocol server and it handled all the translation needed - whether a VT52 or an ADM3A or Wyse 100 or whatever. Unlike a lot of terminal drivers, this had to do everything on both input and output. Every function key, cursor key, etc. was translated, even if it was a multi-character key, into an equivalent 3270 code. The Series/1 maintained a screen buffer for each connected terminal and would send blocks of data to the mainframe when appropriate. That also allowed for screen redraw, which was useful in the days of sometimes flaky modem connections. As far as the mainframe was concerned, everything was either a full-blown 3270 or a plain TTY that only supported CR/LF/BS.



                            Concurrent DOS



                            Digital Research Concurrent DOS was the successor to MP/M-86 (which in turn was the 16-bit version of MP/M which was the multiuser version of CP/M). As with all those previous operating systems, most software had to manage its own "terminal drivers" in whatever way it chose to do so (as explained in other answers), with the operating system handling just the byte-level I/O (baud rate, parity, handshaking, etc.). However, Concurrent DOS added an IBM PC emulation mode using the magic of the 80386 processor (which could run multiple simulated 8086 sessions, each accessing 1 Meg. of RAM, etc., and could also trap any video memory accesses) and terminals such as the Wyse 60 with a "PC Mode" emulation. The PC Mode emulation sent keys as the scan codes normally sent from an IBM PC-compatible keyboard, thus allowing for full compatibility with software that understands the cursor keys, function keys, etc.as well as capturing "key down" vs. "key up" as needed for full interactive use of certain applications. The end result was a nearly complete monochrome text-mode (there was a color version at one time as well, but far less popular) on dozens of terminals on a single system (80386, 80486, I think I went as far as Pentium Pro before networked cheap computers became more practical). In this particular case, the operating system handled all the differences between terminal types. In reality, there were only a few relevant terminal types as taking a VT100 or ADM3A and trying to use it in PC Mode would be extremely limiting and have a number of problems. But at least for a small group of terminal types, this was a situation where the operating system truly did have terminal drivers and did not leave the configuration to the application at all. The applications - whether CP/M-86 or MS-DOS, whether using OS calls for I/O or blindly writing to video memory - could not tell which of the various "PC Mode" terminals (with their minor variations) was actually being used.






                            share|improve this answer


























                              4












                              4








                              4







                              Two more slightly different situations from the past (well, everything in Retrocomputing is from the past...):



                              3270 Emulation



                              When I was at the University of Maryland, College Park in the early 1980s, there were some Vaxes, a Univac 1100/80 and some other non-IBM large systems, and there were some micros (my first networking course was on the then brand new IBM AT). But the bulk of the CS courses, the primary email system, etc. was all on IBM mainframes. However, except for system consoles (not accessible to undergrads) and a handful of experimental systems, we had no IBM terminals. There were some Decwriters but most of the terminals were ADM3As and similar video terminals, many (not all) running on the mainframes with a 3270 emulation. One day I was chatting with someone online and lamenting that my wonderful Wyse 100 was limited to glass TTY operation on the mainframes. Soon enough, I was down in the bowels of the CS building with my Wyse 100 and a few hours later it was working in 3270 emulation mode. It turns out they had an IBM Series/1 set up as a terminal/protocol server and it handled all the translation needed - whether a VT52 or an ADM3A or Wyse 100 or whatever. Unlike a lot of terminal drivers, this had to do everything on both input and output. Every function key, cursor key, etc. was translated, even if it was a multi-character key, into an equivalent 3270 code. The Series/1 maintained a screen buffer for each connected terminal and would send blocks of data to the mainframe when appropriate. That also allowed for screen redraw, which was useful in the days of sometimes flaky modem connections. As far as the mainframe was concerned, everything was either a full-blown 3270 or a plain TTY that only supported CR/LF/BS.



                              Concurrent DOS



                              Digital Research Concurrent DOS was the successor to MP/M-86 (which in turn was the 16-bit version of MP/M which was the multiuser version of CP/M). As with all those previous operating systems, most software had to manage its own "terminal drivers" in whatever way it chose to do so (as explained in other answers), with the operating system handling just the byte-level I/O (baud rate, parity, handshaking, etc.). However, Concurrent DOS added an IBM PC emulation mode using the magic of the 80386 processor (which could run multiple simulated 8086 sessions, each accessing 1 Meg. of RAM, etc., and could also trap any video memory accesses) and terminals such as the Wyse 60 with a "PC Mode" emulation. The PC Mode emulation sent keys as the scan codes normally sent from an IBM PC-compatible keyboard, thus allowing for full compatibility with software that understands the cursor keys, function keys, etc.as well as capturing "key down" vs. "key up" as needed for full interactive use of certain applications. The end result was a nearly complete monochrome text-mode (there was a color version at one time as well, but far less popular) on dozens of terminals on a single system (80386, 80486, I think I went as far as Pentium Pro before networked cheap computers became more practical). In this particular case, the operating system handled all the differences between terminal types. In reality, there were only a few relevant terminal types as taking a VT100 or ADM3A and trying to use it in PC Mode would be extremely limiting and have a number of problems. But at least for a small group of terminal types, this was a situation where the operating system truly did have terminal drivers and did not leave the configuration to the application at all. The applications - whether CP/M-86 or MS-DOS, whether using OS calls for I/O or blindly writing to video memory - could not tell which of the various "PC Mode" terminals (with their minor variations) was actually being used.






                              share|improve this answer













                              Two more slightly different situations from the past (well, everything in Retrocomputing is from the past...):



                              3270 Emulation



                              When I was at the University of Maryland, College Park in the early 1980s, there were some Vaxes, a Univac 1100/80 and some other non-IBM large systems, and there were some micros (my first networking course was on the then brand new IBM AT). But the bulk of the CS courses, the primary email system, etc. was all on IBM mainframes. However, except for system consoles (not accessible to undergrads) and a handful of experimental systems, we had no IBM terminals. There were some Decwriters but most of the terminals were ADM3As and similar video terminals, many (not all) running on the mainframes with a 3270 emulation. One day I was chatting with someone online and lamenting that my wonderful Wyse 100 was limited to glass TTY operation on the mainframes. Soon enough, I was down in the bowels of the CS building with my Wyse 100 and a few hours later it was working in 3270 emulation mode. It turns out they had an IBM Series/1 set up as a terminal/protocol server and it handled all the translation needed - whether a VT52 or an ADM3A or Wyse 100 or whatever. Unlike a lot of terminal drivers, this had to do everything on both input and output. Every function key, cursor key, etc. was translated, even if it was a multi-character key, into an equivalent 3270 code. The Series/1 maintained a screen buffer for each connected terminal and would send blocks of data to the mainframe when appropriate. That also allowed for screen redraw, which was useful in the days of sometimes flaky modem connections. As far as the mainframe was concerned, everything was either a full-blown 3270 or a plain TTY that only supported CR/LF/BS.



                              Concurrent DOS



                              Digital Research Concurrent DOS was the successor to MP/M-86 (which in turn was the 16-bit version of MP/M which was the multiuser version of CP/M). As with all those previous operating systems, most software had to manage its own "terminal drivers" in whatever way it chose to do so (as explained in other answers), with the operating system handling just the byte-level I/O (baud rate, parity, handshaking, etc.). However, Concurrent DOS added an IBM PC emulation mode using the magic of the 80386 processor (which could run multiple simulated 8086 sessions, each accessing 1 Meg. of RAM, etc., and could also trap any video memory accesses) and terminals such as the Wyse 60 with a "PC Mode" emulation. The PC Mode emulation sent keys as the scan codes normally sent from an IBM PC-compatible keyboard, thus allowing for full compatibility with software that understands the cursor keys, function keys, etc.as well as capturing "key down" vs. "key up" as needed for full interactive use of certain applications. The end result was a nearly complete monochrome text-mode (there was a color version at one time as well, but far less popular) on dozens of terminals on a single system (80386, 80486, I think I went as far as Pentium Pro before networked cheap computers became more practical). In this particular case, the operating system handled all the differences between terminal types. In reality, there were only a few relevant terminal types as taking a VT100 or ADM3A and trying to use it in PC Mode would be extremely limiting and have a number of problems. But at least for a small group of terminal types, this was a situation where the operating system truly did have terminal drivers and did not leave the configuration to the application at all. The applications - whether CP/M-86 or MS-DOS, whether using OS calls for I/O or blindly writing to video memory - could not tell which of the various "PC Mode" terminals (with their minor variations) was actually being used.







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Jan 21 at 22:07









                              manassehkatzmanassehkatz

                              3,002622




                              3,002622























                                  4














                                  I guess that's a field one can come up with many views - and all presented answers so far give a valid view with lots of additional information. This is intended to break it down to a more general statements:




                                  • No, at the core no OS offers terminal drivers. Just serial (or whatever) line drivers handling bare communication to a device connected. Input (and output) is mainly on a character by character base (mainframes do differ) This is also often called RAW mode.


                                  • Many OS offer (very limited) on functionality for line editing and some escape functions (like program or input abort or escape to OS level). Here input was not on a character basis, but a whole line at once. Examples would be MS-DOS or CP/M function 0Ah. In some way this could be called a driver function. Other systems delegated this into user side libraries. This is usually called Cooked mode. (*1)


                                  • Within the 'world' of a single provider (like DEC or IBM) terminal codes where usually kept upward compatible, so programmers just used the known sequences to control terminal output, marking a certain terminal as minimum requirement.



                                  • In heterogenous environments developers soon added tools based on databases assigning to be used code sequences to generalized (virtual) functions. Depending on the program model this was done




                                    • by calls into the data base handler for each occurrence when produced, or

                                    • by inserting virtual codes into a buffered output and then having the whole message translated into a message the terminal would understand.


                                    The eventually most prominent implementation here might be Unix' Termcap. A simple text data base structured by terminal-identifier and function-identifier.



                                  • In the mainframe world existed some rather primitive OS side drivers for terminal agnostic handling of output, usually limited to things like line feed highlighting and locking/unlocking of input areas.



                                  Bottom Line: Terminals were in most cases simple character based interfaces with usually no higher level support for output and optional (and rather minimal) support for input handling.





                                  *1 - A few systems/libraries also offered something that could be called Rare mode where operation was character based, but certain, single character codes would be caught and interpreted before (or instead of) handed to the application.






                                  share|improve this answer






























                                    4














                                    I guess that's a field one can come up with many views - and all presented answers so far give a valid view with lots of additional information. This is intended to break it down to a more general statements:




                                    • No, at the core no OS offers terminal drivers. Just serial (or whatever) line drivers handling bare communication to a device connected. Input (and output) is mainly on a character by character base (mainframes do differ) This is also often called RAW mode.


                                    • Many OS offer (very limited) on functionality for line editing and some escape functions (like program or input abort or escape to OS level). Here input was not on a character basis, but a whole line at once. Examples would be MS-DOS or CP/M function 0Ah. In some way this could be called a driver function. Other systems delegated this into user side libraries. This is usually called Cooked mode. (*1)


                                    • Within the 'world' of a single provider (like DEC or IBM) terminal codes where usually kept upward compatible, so programmers just used the known sequences to control terminal output, marking a certain terminal as minimum requirement.



                                    • In heterogenous environments developers soon added tools based on databases assigning to be used code sequences to generalized (virtual) functions. Depending on the program model this was done




                                      • by calls into the data base handler for each occurrence when produced, or

                                      • by inserting virtual codes into a buffered output and then having the whole message translated into a message the terminal would understand.


                                      The eventually most prominent implementation here might be Unix' Termcap. A simple text data base structured by terminal-identifier and function-identifier.



                                    • In the mainframe world existed some rather primitive OS side drivers for terminal agnostic handling of output, usually limited to things like line feed highlighting and locking/unlocking of input areas.



                                    Bottom Line: Terminals were in most cases simple character based interfaces with usually no higher level support for output and optional (and rather minimal) support for input handling.





                                    *1 - A few systems/libraries also offered something that could be called Rare mode where operation was character based, but certain, single character codes would be caught and interpreted before (or instead of) handed to the application.






                                    share|improve this answer




























                                      4












                                      4








                                      4







                                      I guess that's a field one can come up with many views - and all presented answers so far give a valid view with lots of additional information. This is intended to break it down to a more general statements:




                                      • No, at the core no OS offers terminal drivers. Just serial (or whatever) line drivers handling bare communication to a device connected. Input (and output) is mainly on a character by character base (mainframes do differ) This is also often called RAW mode.


                                      • Many OS offer (very limited) on functionality for line editing and some escape functions (like program or input abort or escape to OS level). Here input was not on a character basis, but a whole line at once. Examples would be MS-DOS or CP/M function 0Ah. In some way this could be called a driver function. Other systems delegated this into user side libraries. This is usually called Cooked mode. (*1)


                                      • Within the 'world' of a single provider (like DEC or IBM) terminal codes where usually kept upward compatible, so programmers just used the known sequences to control terminal output, marking a certain terminal as minimum requirement.



                                      • In heterogenous environments developers soon added tools based on databases assigning to be used code sequences to generalized (virtual) functions. Depending on the program model this was done




                                        • by calls into the data base handler for each occurrence when produced, or

                                        • by inserting virtual codes into a buffered output and then having the whole message translated into a message the terminal would understand.


                                        The eventually most prominent implementation here might be Unix' Termcap. A simple text data base structured by terminal-identifier and function-identifier.



                                      • In the mainframe world existed some rather primitive OS side drivers for terminal agnostic handling of output, usually limited to things like line feed highlighting and locking/unlocking of input areas.



                                      Bottom Line: Terminals were in most cases simple character based interfaces with usually no higher level support for output and optional (and rather minimal) support for input handling.





                                      *1 - A few systems/libraries also offered something that could be called Rare mode where operation was character based, but certain, single character codes would be caught and interpreted before (or instead of) handed to the application.






                                      share|improve this answer















                                      I guess that's a field one can come up with many views - and all presented answers so far give a valid view with lots of additional information. This is intended to break it down to a more general statements:




                                      • No, at the core no OS offers terminal drivers. Just serial (or whatever) line drivers handling bare communication to a device connected. Input (and output) is mainly on a character by character base (mainframes do differ) This is also often called RAW mode.


                                      • Many OS offer (very limited) on functionality for line editing and some escape functions (like program or input abort or escape to OS level). Here input was not on a character basis, but a whole line at once. Examples would be MS-DOS or CP/M function 0Ah. In some way this could be called a driver function. Other systems delegated this into user side libraries. This is usually called Cooked mode. (*1)


                                      • Within the 'world' of a single provider (like DEC or IBM) terminal codes where usually kept upward compatible, so programmers just used the known sequences to control terminal output, marking a certain terminal as minimum requirement.



                                      • In heterogenous environments developers soon added tools based on databases assigning to be used code sequences to generalized (virtual) functions. Depending on the program model this was done




                                        • by calls into the data base handler for each occurrence when produced, or

                                        • by inserting virtual codes into a buffered output and then having the whole message translated into a message the terminal would understand.


                                        The eventually most prominent implementation here might be Unix' Termcap. A simple text data base structured by terminal-identifier and function-identifier.



                                      • In the mainframe world existed some rather primitive OS side drivers for terminal agnostic handling of output, usually limited to things like line feed highlighting and locking/unlocking of input areas.



                                      Bottom Line: Terminals were in most cases simple character based interfaces with usually no higher level support for output and optional (and rather minimal) support for input handling.





                                      *1 - A few systems/libraries also offered something that could be called Rare mode where operation was character based, but certain, single character codes would be caught and interpreted before (or instead of) handed to the application.







                                      share|improve this answer














                                      share|improve this answer



                                      share|improve this answer








                                      edited Jan 22 at 0:17









                                      manassehkatz

                                      3,002622




                                      3,002622










                                      answered Jan 21 at 23:00









                                      RaffzahnRaffzahn

                                      51.8k6123209




                                      51.8k6123209























                                          3














                                          The DEC VT100 itself did not have a driver. When you connect a terminal like a VT100 to a serial port it was a just tty device.



                                          VAX/VMS used a utility to configure devices for the operating system. As a Field Engineer, I had to run the utility after adding a new controller like serial line multiplexer to a VAX system or MicroVAX. This was followed by reboot. That was all of the driver configuration that was done. So the answer is that yes a new driver was configured, but it was built in to the OS and if it was the first controller of a given type it usually was automatically configured. If it was the second controller of a given type an address and an interrupt vector had to be assigned.



                                          There wasn't the plethora of devices that there are today on PC's. There were controllers made by other companies, especially disk controllers, but they emulated native DEC controllers.






                                          share|improve this answer




























                                            3














                                            The DEC VT100 itself did not have a driver. When you connect a terminal like a VT100 to a serial port it was a just tty device.



                                            VAX/VMS used a utility to configure devices for the operating system. As a Field Engineer, I had to run the utility after adding a new controller like serial line multiplexer to a VAX system or MicroVAX. This was followed by reboot. That was all of the driver configuration that was done. So the answer is that yes a new driver was configured, but it was built in to the OS and if it was the first controller of a given type it usually was automatically configured. If it was the second controller of a given type an address and an interrupt vector had to be assigned.



                                            There wasn't the plethora of devices that there are today on PC's. There were controllers made by other companies, especially disk controllers, but they emulated native DEC controllers.






                                            share|improve this answer


























                                              3












                                              3








                                              3







                                              The DEC VT100 itself did not have a driver. When you connect a terminal like a VT100 to a serial port it was a just tty device.



                                              VAX/VMS used a utility to configure devices for the operating system. As a Field Engineer, I had to run the utility after adding a new controller like serial line multiplexer to a VAX system or MicroVAX. This was followed by reboot. That was all of the driver configuration that was done. So the answer is that yes a new driver was configured, but it was built in to the OS and if it was the first controller of a given type it usually was automatically configured. If it was the second controller of a given type an address and an interrupt vector had to be assigned.



                                              There wasn't the plethora of devices that there are today on PC's. There were controllers made by other companies, especially disk controllers, but they emulated native DEC controllers.






                                              share|improve this answer













                                              The DEC VT100 itself did not have a driver. When you connect a terminal like a VT100 to a serial port it was a just tty device.



                                              VAX/VMS used a utility to configure devices for the operating system. As a Field Engineer, I had to run the utility after adding a new controller like serial line multiplexer to a VAX system or MicroVAX. This was followed by reboot. That was all of the driver configuration that was done. So the answer is that yes a new driver was configured, but it was built in to the OS and if it was the first controller of a given type it usually was automatically configured. If it was the second controller of a given type an address and an interrupt vector had to be assigned.



                                              There wasn't the plethora of devices that there are today on PC's. There were controllers made by other companies, especially disk controllers, but they emulated native DEC controllers.







                                              share|improve this answer












                                              share|improve this answer



                                              share|improve this answer










                                              answered Jan 23 at 0:17









                                              Thomas BoomerThomas Boomer

                                              311




                                              311























                                                  2














                                                  We have to distinguish between different cases, but in most cases the answer seems to be "no":





                                                  • In "early" systems (like the Altair 680 in home computing or 1960s professional computers) programs simply wrote bytes to the serial port and they read bytes from there.



                                                    In fact, such machines often did not even have an operating system.



                                                    If you used VT-100 (as an example), your application had to be written in a way that VT-100 compatible output was written to the terminal and that the application could understand VT-100 compatible input.




                                                  • Using Linux (the same is true for Solaris; I'm not sure about other OSs) on modern computers have an operating system with a driver for the RS-232 hardware; but there is no driver for VT-100 or similar.



                                                    Just like on "early" systems the application has to communicate in a VT-100-compatible way.



                                                    However there are some libraries (e.g. "ncurses") that can be used by the applications. These libraries provide functions that "translate" "high-level" commands (like: "move the cursor to the upper left corner of the screen") into the correct byte sequences for a lot of different terminal types (e.g. VT-100, xTerm, ...).



                                                    Please note that these are libraries, not drivers. At least in Linux such libraries are handled completely on application level; the OS kernel does not know about the existence of libraries at all.




                                                  • Theoretically it would be possible to provide terminal support on OS level. In this case a driver for a certain terminal type (e.g. a VT-100 driver) would be necessary.



                                                    I doubt that such an OS is currently existing.








                                                  share|improve this answer
























                                                  • "These libraries provide functions that "translate" "high-level" commands into the correct byte sequences for a lot of different terminal types." So who do libraries like ncurses talk to, to send these commands to the terminal? Directly to the RS-232 driver?

                                                    – weibeld
                                                    Jan 21 at 16:00













                                                  • Ncurses sends the output to the "standard output". This can be some port (such as a serial port, the screen, a printer ...), some network connection, a file or another application (e.g. a command line console window).

                                                    – Martin Rosenau
                                                    Jan 21 at 16:03











                                                  • Ok. So you could basically "plug in" a terminal to a computer, like you can plug in today a monitor or a keyboard to a desktop computer, no drivers needed?

                                                    – weibeld
                                                    Jan 21 at 16:21











                                                  • @weibeld yes, and you still can ;-).

                                                    – Stephen Kitt
                                                    Jan 21 at 16:27











                                                  • @weibeld This is a simple way to have many users on a single machine. Note you will need a lot of serial ports.

                                                    – Thorbjørn Ravn Andersen
                                                    Jan 22 at 0:11
















                                                  2














                                                  We have to distinguish between different cases, but in most cases the answer seems to be "no":





                                                  • In "early" systems (like the Altair 680 in home computing or 1960s professional computers) programs simply wrote bytes to the serial port and they read bytes from there.



                                                    In fact, such machines often did not even have an operating system.



                                                    If you used VT-100 (as an example), your application had to be written in a way that VT-100 compatible output was written to the terminal and that the application could understand VT-100 compatible input.




                                                  • Using Linux (the same is true for Solaris; I'm not sure about other OSs) on modern computers have an operating system with a driver for the RS-232 hardware; but there is no driver for VT-100 or similar.



                                                    Just like on "early" systems the application has to communicate in a VT-100-compatible way.



                                                    However there are some libraries (e.g. "ncurses") that can be used by the applications. These libraries provide functions that "translate" "high-level" commands (like: "move the cursor to the upper left corner of the screen") into the correct byte sequences for a lot of different terminal types (e.g. VT-100, xTerm, ...).



                                                    Please note that these are libraries, not drivers. At least in Linux such libraries are handled completely on application level; the OS kernel does not know about the existence of libraries at all.




                                                  • Theoretically it would be possible to provide terminal support on OS level. In this case a driver for a certain terminal type (e.g. a VT-100 driver) would be necessary.



                                                    I doubt that such an OS is currently existing.








                                                  share|improve this answer
























                                                  • "These libraries provide functions that "translate" "high-level" commands into the correct byte sequences for a lot of different terminal types." So who do libraries like ncurses talk to, to send these commands to the terminal? Directly to the RS-232 driver?

                                                    – weibeld
                                                    Jan 21 at 16:00













                                                  • Ncurses sends the output to the "standard output". This can be some port (such as a serial port, the screen, a printer ...), some network connection, a file or another application (e.g. a command line console window).

                                                    – Martin Rosenau
                                                    Jan 21 at 16:03











                                                  • Ok. So you could basically "plug in" a terminal to a computer, like you can plug in today a monitor or a keyboard to a desktop computer, no drivers needed?

                                                    – weibeld
                                                    Jan 21 at 16:21











                                                  • @weibeld yes, and you still can ;-).

                                                    – Stephen Kitt
                                                    Jan 21 at 16:27











                                                  • @weibeld This is a simple way to have many users on a single machine. Note you will need a lot of serial ports.

                                                    – Thorbjørn Ravn Andersen
                                                    Jan 22 at 0:11














                                                  2












                                                  2








                                                  2







                                                  We have to distinguish between different cases, but in most cases the answer seems to be "no":





                                                  • In "early" systems (like the Altair 680 in home computing or 1960s professional computers) programs simply wrote bytes to the serial port and they read bytes from there.



                                                    In fact, such machines often did not even have an operating system.



                                                    If you used VT-100 (as an example), your application had to be written in a way that VT-100 compatible output was written to the terminal and that the application could understand VT-100 compatible input.




                                                  • Using Linux (the same is true for Solaris; I'm not sure about other OSs) on modern computers have an operating system with a driver for the RS-232 hardware; but there is no driver for VT-100 or similar.



                                                    Just like on "early" systems the application has to communicate in a VT-100-compatible way.



                                                    However there are some libraries (e.g. "ncurses") that can be used by the applications. These libraries provide functions that "translate" "high-level" commands (like: "move the cursor to the upper left corner of the screen") into the correct byte sequences for a lot of different terminal types (e.g. VT-100, xTerm, ...).



                                                    Please note that these are libraries, not drivers. At least in Linux such libraries are handled completely on application level; the OS kernel does not know about the existence of libraries at all.




                                                  • Theoretically it would be possible to provide terminal support on OS level. In this case a driver for a certain terminal type (e.g. a VT-100 driver) would be necessary.



                                                    I doubt that such an OS is currently existing.








                                                  share|improve this answer













                                                  We have to distinguish between different cases, but in most cases the answer seems to be "no":





                                                  • In "early" systems (like the Altair 680 in home computing or 1960s professional computers) programs simply wrote bytes to the serial port and they read bytes from there.



                                                    In fact, such machines often did not even have an operating system.



                                                    If you used VT-100 (as an example), your application had to be written in a way that VT-100 compatible output was written to the terminal and that the application could understand VT-100 compatible input.




                                                  • Using Linux (the same is true for Solaris; I'm not sure about other OSs) on modern computers have an operating system with a driver for the RS-232 hardware; but there is no driver for VT-100 or similar.



                                                    Just like on "early" systems the application has to communicate in a VT-100-compatible way.



                                                    However there are some libraries (e.g. "ncurses") that can be used by the applications. These libraries provide functions that "translate" "high-level" commands (like: "move the cursor to the upper left corner of the screen") into the correct byte sequences for a lot of different terminal types (e.g. VT-100, xTerm, ...).



                                                    Please note that these are libraries, not drivers. At least in Linux such libraries are handled completely on application level; the OS kernel does not know about the existence of libraries at all.




                                                  • Theoretically it would be possible to provide terminal support on OS level. In this case a driver for a certain terminal type (e.g. a VT-100 driver) would be necessary.



                                                    I doubt that such an OS is currently existing.









                                                  share|improve this answer












                                                  share|improve this answer



                                                  share|improve this answer










                                                  answered Jan 21 at 15:36









                                                  Martin RosenauMartin Rosenau

                                                  652127




                                                  652127













                                                  • "These libraries provide functions that "translate" "high-level" commands into the correct byte sequences for a lot of different terminal types." So who do libraries like ncurses talk to, to send these commands to the terminal? Directly to the RS-232 driver?

                                                    – weibeld
                                                    Jan 21 at 16:00













                                                  • Ncurses sends the output to the "standard output". This can be some port (such as a serial port, the screen, a printer ...), some network connection, a file or another application (e.g. a command line console window).

                                                    – Martin Rosenau
                                                    Jan 21 at 16:03











                                                  • Ok. So you could basically "plug in" a terminal to a computer, like you can plug in today a monitor or a keyboard to a desktop computer, no drivers needed?

                                                    – weibeld
                                                    Jan 21 at 16:21











                                                  • @weibeld yes, and you still can ;-).

                                                    – Stephen Kitt
                                                    Jan 21 at 16:27











                                                  • @weibeld This is a simple way to have many users on a single machine. Note you will need a lot of serial ports.

                                                    – Thorbjørn Ravn Andersen
                                                    Jan 22 at 0:11



















                                                  • "These libraries provide functions that "translate" "high-level" commands into the correct byte sequences for a lot of different terminal types." So who do libraries like ncurses talk to, to send these commands to the terminal? Directly to the RS-232 driver?

                                                    – weibeld
                                                    Jan 21 at 16:00













                                                  • Ncurses sends the output to the "standard output". This can be some port (such as a serial port, the screen, a printer ...), some network connection, a file or another application (e.g. a command line console window).

                                                    – Martin Rosenau
                                                    Jan 21 at 16:03











                                                  • Ok. So you could basically "plug in" a terminal to a computer, like you can plug in today a monitor or a keyboard to a desktop computer, no drivers needed?

                                                    – weibeld
                                                    Jan 21 at 16:21











                                                  • @weibeld yes, and you still can ;-).

                                                    – Stephen Kitt
                                                    Jan 21 at 16:27











                                                  • @weibeld This is a simple way to have many users on a single machine. Note you will need a lot of serial ports.

                                                    – Thorbjørn Ravn Andersen
                                                    Jan 22 at 0:11

















                                                  "These libraries provide functions that "translate" "high-level" commands into the correct byte sequences for a lot of different terminal types." So who do libraries like ncurses talk to, to send these commands to the terminal? Directly to the RS-232 driver?

                                                  – weibeld
                                                  Jan 21 at 16:00







                                                  "These libraries provide functions that "translate" "high-level" commands into the correct byte sequences for a lot of different terminal types." So who do libraries like ncurses talk to, to send these commands to the terminal? Directly to the RS-232 driver?

                                                  – weibeld
                                                  Jan 21 at 16:00















                                                  Ncurses sends the output to the "standard output". This can be some port (such as a serial port, the screen, a printer ...), some network connection, a file or another application (e.g. a command line console window).

                                                  – Martin Rosenau
                                                  Jan 21 at 16:03





                                                  Ncurses sends the output to the "standard output". This can be some port (such as a serial port, the screen, a printer ...), some network connection, a file or another application (e.g. a command line console window).

                                                  – Martin Rosenau
                                                  Jan 21 at 16:03













                                                  Ok. So you could basically "plug in" a terminal to a computer, like you can plug in today a monitor or a keyboard to a desktop computer, no drivers needed?

                                                  – weibeld
                                                  Jan 21 at 16:21





                                                  Ok. So you could basically "plug in" a terminal to a computer, like you can plug in today a monitor or a keyboard to a desktop computer, no drivers needed?

                                                  – weibeld
                                                  Jan 21 at 16:21













                                                  @weibeld yes, and you still can ;-).

                                                  – Stephen Kitt
                                                  Jan 21 at 16:27





                                                  @weibeld yes, and you still can ;-).

                                                  – Stephen Kitt
                                                  Jan 21 at 16:27













                                                  @weibeld This is a simple way to have many users on a single machine. Note you will need a lot of serial ports.

                                                  – Thorbjørn Ravn Andersen
                                                  Jan 22 at 0:11





                                                  @weibeld This is a simple way to have many users on a single machine. Note you will need a lot of serial ports.

                                                  – Thorbjørn Ravn Andersen
                                                  Jan 22 at 0:11











                                                  2














                                                  Back in the day I always added the DCL command "$Set Term/Inquire" to my login.com script to let VAX/VMS figure out the type of terminal I was using. I find it interesting that it seems at least once a week, I see references to DEC's VT100/VT101 in modern software.



                                                  I remember having a directory full of animated txt files and some txt files to make a Dectalk box sing :*)



                                                  Here are some links:





                                                  • Ansi everthing


                                                  • VT100 History and more


                                                  • Microsoft almost brings back the VT100

                                                  • XTerm can do a lot!






                                                  share|improve this answer


























                                                  • I think in UNIX the TERM environment variable serves exactly the same purpose.

                                                    – weibeld
                                                    Jan 22 at 23:21











                                                  • Well... the Unix environment variable is an attribute of a process, whereas in VMS the result of set terminal /inquire would be a change of an attribute maintained for the serial device. And of course, set term /inquire only worked on DEC's terminals or those that emulated them. Since in practice just about any serial terminal attached to a VMS system would be a DEC terminal or a close emulator, this was acceptable.

                                                    – Jamie Hanrahan
                                                    Jan 24 at 3:04
















                                                  2














                                                  Back in the day I always added the DCL command "$Set Term/Inquire" to my login.com script to let VAX/VMS figure out the type of terminal I was using. I find it interesting that it seems at least once a week, I see references to DEC's VT100/VT101 in modern software.



                                                  I remember having a directory full of animated txt files and some txt files to make a Dectalk box sing :*)



                                                  Here are some links:





                                                  • Ansi everthing


                                                  • VT100 History and more


                                                  • Microsoft almost brings back the VT100

                                                  • XTerm can do a lot!






                                                  share|improve this answer


























                                                  • I think in UNIX the TERM environment variable serves exactly the same purpose.

                                                    – weibeld
                                                    Jan 22 at 23:21











                                                  • Well... the Unix environment variable is an attribute of a process, whereas in VMS the result of set terminal /inquire would be a change of an attribute maintained for the serial device. And of course, set term /inquire only worked on DEC's terminals or those that emulated them. Since in practice just about any serial terminal attached to a VMS system would be a DEC terminal or a close emulator, this was acceptable.

                                                    – Jamie Hanrahan
                                                    Jan 24 at 3:04














                                                  2












                                                  2








                                                  2







                                                  Back in the day I always added the DCL command "$Set Term/Inquire" to my login.com script to let VAX/VMS figure out the type of terminal I was using. I find it interesting that it seems at least once a week, I see references to DEC's VT100/VT101 in modern software.



                                                  I remember having a directory full of animated txt files and some txt files to make a Dectalk box sing :*)



                                                  Here are some links:





                                                  • Ansi everthing


                                                  • VT100 History and more


                                                  • Microsoft almost brings back the VT100

                                                  • XTerm can do a lot!






                                                  share|improve this answer















                                                  Back in the day I always added the DCL command "$Set Term/Inquire" to my login.com script to let VAX/VMS figure out the type of terminal I was using. I find it interesting that it seems at least once a week, I see references to DEC's VT100/VT101 in modern software.



                                                  I remember having a directory full of animated txt files and some txt files to make a Dectalk box sing :*)



                                                  Here are some links:





                                                  • Ansi everthing


                                                  • VT100 History and more


                                                  • Microsoft almost brings back the VT100

                                                  • XTerm can do a lot!







                                                  share|improve this answer














                                                  share|improve this answer



                                                  share|improve this answer








                                                  edited Jan 23 at 4:18

























                                                  answered Jan 22 at 22:50









                                                  RC WoodRC Wood

                                                  212




                                                  212













                                                  • I think in UNIX the TERM environment variable serves exactly the same purpose.

                                                    – weibeld
                                                    Jan 22 at 23:21











                                                  • Well... the Unix environment variable is an attribute of a process, whereas in VMS the result of set terminal /inquire would be a change of an attribute maintained for the serial device. And of course, set term /inquire only worked on DEC's terminals or those that emulated them. Since in practice just about any serial terminal attached to a VMS system would be a DEC terminal or a close emulator, this was acceptable.

                                                    – Jamie Hanrahan
                                                    Jan 24 at 3:04



















                                                  • I think in UNIX the TERM environment variable serves exactly the same purpose.

                                                    – weibeld
                                                    Jan 22 at 23:21











                                                  • Well... the Unix environment variable is an attribute of a process, whereas in VMS the result of set terminal /inquire would be a change of an attribute maintained for the serial device. And of course, set term /inquire only worked on DEC's terminals or those that emulated them. Since in practice just about any serial terminal attached to a VMS system would be a DEC terminal or a close emulator, this was acceptable.

                                                    – Jamie Hanrahan
                                                    Jan 24 at 3:04

















                                                  I think in UNIX the TERM environment variable serves exactly the same purpose.

                                                  – weibeld
                                                  Jan 22 at 23:21





                                                  I think in UNIX the TERM environment variable serves exactly the same purpose.

                                                  – weibeld
                                                  Jan 22 at 23:21













                                                  Well... the Unix environment variable is an attribute of a process, whereas in VMS the result of set terminal /inquire would be a change of an attribute maintained for the serial device. And of course, set term /inquire only worked on DEC's terminals or those that emulated them. Since in practice just about any serial terminal attached to a VMS system would be a DEC terminal or a close emulator, this was acceptable.

                                                  – Jamie Hanrahan
                                                  Jan 24 at 3:04





                                                  Well... the Unix environment variable is an attribute of a process, whereas in VMS the result of set terminal /inquire would be a change of an attribute maintained for the serial device. And of course, set term /inquire only worked on DEC's terminals or those that emulated them. Since in practice just about any serial terminal attached to a VMS system would be a DEC terminal or a close emulator, this was acceptable.

                                                  – Jamie Hanrahan
                                                  Jan 24 at 3:04


















                                                  draft saved

                                                  draft discarded




















































                                                  Thanks for contributing an answer to Retrocomputing Stack Exchange!


                                                  • Please be sure to answer the question. Provide details and share your research!

                                                  But avoid



                                                  • Asking for help, clarification, or responding to other answers.

                                                  • Making statements based on opinion; back them up with references or personal experience.


                                                  To learn more, see our tips on writing great answers.




                                                  draft saved


                                                  draft discarded














                                                  StackExchange.ready(
                                                  function () {
                                                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fretrocomputing.stackexchange.com%2fquestions%2f8856%2fdid-terminals-e-g-vt100-require-a-terminal-driver-on-the-host-computer%23new-answer', 'question_page');
                                                  }
                                                  );

                                                  Post as a guest















                                                  Required, but never shown





















































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown

































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown







                                                  Popular posts from this blog

                                                  Mario Kart Wii

                                                  What does “Dominus providebit” mean?

                                                  Antonio Litta Visconti Arese