You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

kir.h 244B

123456789101112131415161718
  1. #ifndef KIR_H
  2. #define KIR_H
  3. #ifndef KEEP_IT_REAL
  4. #error "kir.h can be used only with -DKEEP_IT_REAL"
  5. #endif
  6. #ifdef ASSEMBLY
  7. #define code32 code16gcc
  8. #else /* ASSEMBLY */
  9. __asm__ ( ".code16gcc" );
  10. #endif /* ASSEMBLY */
  11. #endif /* KIR_H */