printf thing
This commit is contained in:
parent
2374905355
commit
31d90032c7
@ -9,3 +9,11 @@ strlen(const char *str)
|
|||||||
|
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printf(const char *format, ...)
|
||||||
|
{
|
||||||
|
const u32 len = strlen(format);
|
||||||
|
|
||||||
|
vga_write(format, len, 0x0f);
|
||||||
|
return len;
|
||||||
|
}
|
24
sys/memory.c
24
sys/memory.c
@ -1,22 +1,10 @@
|
|||||||
#include <memory.h>
|
#include <memory.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
void *
|
u32 curr = START;
|
||||||
malloc(s32 size)
|
|
||||||
{
|
|
||||||
s32 actual_size = size + sizeof(s32) + sizeof(void *);
|
|
||||||
|
|
||||||
if (start == NULL) {
|
void *malloc(s32 size) {
|
||||||
start = (void *) START;
|
u32 addr = curr;
|
||||||
|
curr += size;
|
||||||
start[0] = '\0';
|
return (void*)addr;
|
||||||
start[1] = '\0';
|
|
||||||
start[2] = '\0';
|
|
||||||
start[3] = '\0';
|
|
||||||
|
|
||||||
SIZE(m) = size;
|
|
||||||
|
|
||||||
return USABLE(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* TODO */
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user