dreamcast/sh7091/serial.hpp
Zack Buhman e4c2a047fa example: add gdrom_test
This successfully reads the first 17 sectors of the first data track
of a CD.
2024-02-25 13:27:39 +08:00

18 lines
257 B
C++

namespace serial {
void init(uint8_t bit_rate);
void character(const char c);
void string(const char * s);
void hexlify(const uint8_t n);
template <typename T>
void integer(const T n, const char end);
template <typename T>
void integer(const T n);
}