debug.h 172 B

1234567891011
  1. #ifndef DEBUG_H__
  2. #define DEBUG_H__
  3. #include "arch.h"
  4. #define software_break(...) \
  5. do { \
  6. arch_break(); \
  7. } while(0)
  8. #endif