STDEMUL(4) —
NAME
stdemul − standard output emulator
DESCRIPTION
The standard output emulator outputs raw characters to the display without interpreting special characters (except bel (^G)). This emulator is used for smart displays which do their own emulation (as does the IBM Academic Information Systems experimental display). To select stdemul when it is not a default, use the following C code:
#include <stdio.h>
#include <machinecons/screen_config.h>
int fd, output_emulator;
char ∗console; /∗ set to some console device∗/
.
.
.
fd=open (console,O_RDWR);
.
.
.
output_emulator=E_STDOUTPUT;
ioctl (fd,EOSETD,&output_emulator);
.
.
.
FILES
/dev/console
/dev/ttyaed
SEE ALSO
ibmaed(4), ibmemul(4)
“IBM/4.3 Console Emulators” in Volume II, Supplementary Documents
PRPQs 5799-WZQ/5799-PFF: IBM/4.3 — 15 Dec 1986