dreamcast/sh7091/serial.hpp
Zack Buhman 1cfbda2dcd example: add clipping2
Unlike the previous clipping example, this clipping example preserves
surface normals.
2024-01-27 10:03:01 +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);
}