36 lines
503 B
C
36 lines
503 B
C
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
|
|
#define TRACE (*(unsigned char *)0x40000000)
|
|
int _read(int file, char* ptr, int len) {
|
|
return 0;
|
|
}
|
|
|
|
int _close(int fd){
|
|
return 0;
|
|
}
|
|
|
|
int _fstat_r(int fd) {
|
|
return 0;
|
|
}
|
|
|
|
int _lseek_r(struct _reent *ptr, FILE *fp, long offset, int whence){
|
|
return 0;
|
|
}
|
|
|
|
int _isatty_r(struct _reent *ptr, int fd) {
|
|
return 0;
|
|
}
|
|
|
|
int _write(int file, const char *ptr, int len) {
|
|
int x;
|
|
|
|
for (x = 0; x < len; x++) {
|
|
TRACE = *ptr++;
|
|
}
|
|
|
|
return (len);
|
|
}
|
|
|