2022-09-14 21:54:59 -05:00
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2022-09-16 15:50:58 -05:00
|
|
|
__attribute((__no_caller_saved_registers__))
|
2022-09-14 21:54:59 -05:00
|
|
|
void printByte(uint8_t v, uint16_t *buff);
|
2022-09-16 15:50:58 -05:00
|
|
|
__attribute((__no_caller_saved_registers__))
|
2022-09-14 21:54:59 -05:00
|
|
|
void printWord(uint16_t v, uint16_t *buff);
|
2022-09-16 15:50:58 -05:00
|
|
|
__attribute((__no_caller_saved_registers__))
|
2022-09-14 21:54:59 -05:00
|
|
|
void printDword(uint32_t v, uint16_t *buff);
|