cpuinfo_cfg.h 253 B

1234567891011
  1. #ifndef __CPUINFO_CFG_H__
  2. #define __CPUINFO_CFG_H__
  3. /* NOTE: You can customize your own printf function here */
  4. #include <stdio.h>
  5. #define CIF_PRINTF(fmt, ...) printf(fmt, ##__VA_ARGS__)
  6. typedef unsigned long addr_t;
  7. #define CIF_PRIxADDR "lx"
  8. #endif