register.h 204 B

1234567
  1. #ifndef register_h
  2. #define register_h
  3. int InitRegister( void );
  4. void ShiftRegisterOutData( char * data, int count );
  5. #define KEYS_CONTROL(CONTROL) ShiftRegisterOutData( (char*)&CONTROL, 1 )
  6. #endif