Design
emulate.asc
Associated article: Emulating Non-DOS Systems Under MS-DOS
Tags: Parallel Embedded Systems Design
_EMULATING NON-DOS SYSTEMS UNDER MS-DOS_
by Dan Troy
[LISTING ONE]
typedef struct args
{
unsigned char *input; /* string of inputs to function */
unsigned char *output; /* string of outputs to function */
void (*spawn_function)(); /* emulated VP5 OS function */
};
[LISTING TWO]
const struct ...


