ROSE/print.h

10 lines
301 B
C
Raw Normal View History

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