/* * * Card reader status bits */ #ifndef _CRDEF_H #define _CRDEF_H /* Translation mode definitions */ #define CR$V_TMODE 0 #define CR$M_TMODE 0x0F #define CR$S_TMODE 4 #define CR$K_T026 0 /* 026 punch code translation */ #define CR$K_T029 1 /* 029 punch code translation */ union crdef { struct{ unsigned cr$v_tmode : 4; /* translation mode */ unsigned : 4; } cr$r_crdef_bits; }; #endif /*_CRDEF_H*/