* <!-- description --> * @brief Outputs a string and an 32bit hex to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 32bit hex value to output */
| 82 | * @param val the 32bit hex value to output |
| 83 | */ |
| 84 | static inline void |
| 85 | bfdebug_x32(char const *const str, uint32_t const val) NOEXCEPT |
| 86 | { |
| 87 | printf("[BAREFLANK DEBUG] %s: 0x%" PRIx32 "\n", str, val); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected