2019-06-10 21:54:23 +00:00
|
|
|
#include <cpm.h>
|
2007-04-27 22:42:41 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define OUT_OF_MEMORY (void*)(-1) /* sbrk returns this on failure */
|
|
|
|
#define STACK_BUFFER 128 /* number of bytes to leave for stack */
|
|
|
|
|
|
|
|
extern char _end[1];
|
|
|
|
|
|
|
|
int brk(void* newend)
|
|
|
|
{
|
|
|
|
/* We determine the amount of free memory by looking at the address of the
|
|
|
|
* BDOS vector at 0x0006. */
|
|
|
|
char* memtop = (char*) ((*(unsigned char*)0x0007)<<8);
|
|
|
|
char* p = newend;
|
|
|
|
|
|
|
|
if ((p >= memtop) ||
|
|
|
|
(p < _end))
|
|
|
|
return -1;
|
|
|
|
|
2019-06-10 21:54:23 +00:00
|
|
|
cpm_ram = p;
|
2007-04-27 22:42:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-23 21:06:24 +00:00
|
|
|
void* sbrk(int increment)
|
2007-04-27 22:42:41 +00:00
|
|
|
{
|
|
|
|
char* old;
|
2019-02-08 20:43:52 +00:00
|
|
|
char* new;
|
2007-04-27 22:42:41 +00:00
|
|
|
|
|
|
|
if (increment == 0)
|
2019-06-10 21:54:23 +00:00
|
|
|
return cpm_ram;
|
2007-04-27 22:42:41 +00:00
|
|
|
|
2019-06-10 21:54:23 +00:00
|
|
|
old = cpm_ram;
|
2019-02-08 20:43:52 +00:00
|
|
|
new = old + increment;
|
|
|
|
|
|
|
|
if ((increment > 0) && (new <= old))
|
|
|
|
goto out_of_memory;
|
|
|
|
else if ((increment < 0) && (new >= old))
|
|
|
|
goto out_of_memory;
|
|
|
|
|
|
|
|
if (brk(new) < 0)
|
|
|
|
goto out_of_memory;
|
|
|
|
|
2007-04-27 22:42:41 +00:00
|
|
|
return old;
|
2019-02-08 20:43:52 +00:00
|
|
|
|
|
|
|
out_of_memory:
|
|
|
|
errno = ENOMEM;
|
|
|
|
return OUT_OF_MEMORY;
|
2007-04-27 22:42:41 +00:00
|
|
|
}
|