First commit 13/02/1995

This commit is contained in:
2021-09-12 19:56:57 +02:00
commit 0b071899d4
20 changed files with 654 additions and 0 deletions

20
SERIE.CPP Normal file
View File

@ -0,0 +1,20 @@
#include <stdio.h>
#include <conio.h>
#include <bios.h>
#include "serutil.h"
void main ( void )
{
char key;
clrscr();
while ( ( key = getch() ) != 27 )
{
if ( ser_WriteByte( 1, 0xFF, 1, 0, 0 ) != 0 )
printf ( "\n Error !!! " );
}
}