🔧 使cpu支持SSE(目前会出现#GP)

This commit is contained in:
fslongjin
2022-01-27 14:58:14 +08:00
parent ae52d9c2d2
commit 40a551d154
9 changed files with 198 additions and 16 deletions

View File

@ -94,6 +94,9 @@ static int vsprintf(char *buf, const char *fmt, va_list args);
*/
static char* write_num(char *str, long long num, int base, int field_width, int precision, int flags);
static char *write_float_point_num(char *str, double num, int field_width, int precision, int flags);
/**
* @brief 在屏幕上指定位置打印字符
*