switch-coreboot/util/baremetal/include/subr.h
2002-11-12 17:28:44 +00:00

14 lines
256 B
C

#ifndef SUBR_H_
#define SUBR_H_
#include <stdint.h>
void displayinit(void);
void display(char msg[]);
void display_tx_byte(unsigned char byte);
void display_tx_break(void);
void error(char errmsg[]);
void post_code(uint8_t value);
#endif /* SUBR_H_ */