加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rt.c 683 Bytes
一键复制 编辑 原始数据 按行查看 历史
Masaki Muranaka 提交于 2013-04-21 15:45 . Fix return code to Unix style.
#include "types.h"
void err_hex(UInt32 val){
char x[9];
unsigned char i, c;
x[8] = 0;
for(i = 0; i < 8; i++){
c = val & 0x0F;
val >>= 4;
c = (c >= 10) ? (c + 'A' - 10) : (c + '0');
x[7 - i] = c;
}
err_str(x);
}
void err_dec(UInt32 val){
char x[16];
unsigned char i, c;
x[sizeof(x) - 1] = 0;
for(i = 0; i < sizeof(x) - 1; i++){
c = (val % 10) + '0';
val /= 10;
x[sizeof(x) - 2 - i] = c;
if(!val) break;
}
err_str(x + sizeof(x) - 2 - i);
}
void __mem_zero(void* ptr, UInt16 sz){
UInt8* p = ptr;
while(sz--) *p++ = 0;
}
void __mem_copy(void* d_, const void* s_, UInt32 sz){
UInt8* d = d_;
const UInt8* s = s_;
while(sz--) *d++ = *s++;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化