dreamcast/sh7091/serial.hpp
Zack Buhman 4842ab0e4f example: add clipping2
Unlike the previous clipping example, this clipping example preserves
surface normals.
2024-01-27 10:20:46 +08:00

16 lines
209 B
C++

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