123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /* Copyright (C) 2016 Jeremiah Orians
- * This file is part of M2-Planet.
- *
- * M2-Planet is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * M2-Planet is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
- */
- // CONSTANT stdin 0
- // CONSTANT stdout 1
- // CONSTANT stderr 2
- // CONSTANT EOF 0xFFFFFFFF
- // CONSTANT NULL 0
- // CONSTANT EXIT_FAILURE 1
- // CONSTANT EXIT_SUCCESS 0
- // CONSTANT TRUE 1
- // CONSTANT FALSE 0
- int fgetc(FILE* f)
- {
- asm("LOAD R0 R14 0"
- "LOADI R1 -1"
- "COPY R2 R15"
- "PUSHR R1 R15"
- "MOVE R1 R2"
- "LOADI R2 1"
- "SYS_READ"
- "POPR R1 R15"
- "JUMP.Z R0 @FUNCTION_FGETC_DONE"
- "SR0I R1 24"
- ":FUNCTION_FGETC_DONE"
- "MOVE R0 R1");
- }
- void fputc(char s, FILE* f)
- {
- asm("LOAD R0 R14 0"
- "SL0I R0 24"
- "COPY R1 R15"
- "PUSHR R0 R15"
- "LOAD R0 R14 4"
- "LOADI R2 1"
- "SYS_WRITE"
- "POPR R1 R15");
- }
- void fputs(char* s, FILE* f)
- {
- while(0 != s[0])
- {
- fputc(s[0], f);
- s = s + 1;
- }
- }
- FILE* open(char* name, int flag, int mode)
- {
- asm("LOAD R0 R14 0"
- "LOAD R1 R14 4"
- "LOAD R2 R14 8"
- "SYS_OPEN"
- "FALSE R2");
- }
- FILE* fopen(char* filename, char* mode)
- {
- FILE* f;
- if('w' == mode[0])
- { /* 577 is O_WRONLY|O_CREAT|O_TRUNC, 384 is 600 in octal */
- f = open(filename, 577 , 384);
- }
- else
- { /* Everything else is a read */
- f = open(filename, 0, 0);
- }
- /* Negative numbers are error codes */
- if(0 > f)
- {
- return 0;
- }
- return f;
- }
- int close(int fd)
- {
- asm("LOAD R0 R14 0"
- "SYS_CLOSE");
- }
- int fclose(FILE* stream)
- {
- int error = close(stream);
- return error;
- }
- int brk(void *addr)
- {
- asm("LOAD R0 R14 0"
- "ADDU R0 R12 R0"
- "SWAP R0 R12");
- }
- long _malloc_ptr;
- long _brk_ptr;
- void* malloc(int size)
- {
- if(NULL == _brk_ptr)
- {
- _brk_ptr = brk(0);
- _malloc_ptr = _brk_ptr;
- }
- if(_brk_ptr < _malloc_ptr + size)
- {
- _brk_ptr = brk(_malloc_ptr + size);
- if(-1 == _brk_ptr) return 0;
- }
- long old_malloc = _malloc_ptr;
- _malloc_ptr = _malloc_ptr + size;
- return old_malloc;
- }
- int strlen(char* str )
- {
- int i = 0;
- while(0 != str[i]) i = i + 1;
- return i;
- }
- void* memset(void* ptr, int value, int num)
- {
- char* s;
- for(s = ptr; 0 < num; num = num - 1)
- {
- s[0] = value;
- s = s + 1;
- }
- }
- void* calloc(int count, int size)
- {
- void* ret = malloc(count * size);
- if(NULL == ret) return NULL;
- memset(ret, 0, (count * size));
- return ret;
- }
- void free(void* l)
- {
- return;
- }
- void exit(int value)
- {
- asm("LOAD R0 R14 0"
- "SYS_EXIT");
- }
|