仓库迁移

This commit is contained in:
andy
2023-06-10 11:52:00 +08:00
parent e4616bfae5
commit 077c27f2bb
499 changed files with 199745 additions and 92 deletions

27
source/soft/mystdlib.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef mystdlib_h__
#define mystdlib_h__
#include "stdint.h"
void mem_init(void);
int mem_perused(void);
void tempptr_init(void);
void *tmalloc(uint32_t size);
void *tappend(void *p,void *del);
#endif