mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
14 lines
256 B
C
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_ */
|