#include "Board.cpp"
Go to the source code of this file.
Functions | |
int | main () |
|
Definition at line 6 of file BoardTest.cpp. 00007 { 00008 Board b; 00009 00010 register int k = 0; 00011 for( k = 0; k < 256; k++ ) 00012 { 00013 USHORT val = k << 8 | k; 00014 printf( "IN=%x, OUT=%x. \n", b.Write( val ), val ); 00015 } 00016 00017 for( k = 0; k < 1000; k++ ) 00018 b.Write( b.Read() ); 00019 00020 b.KillServer(); 00021 } |