suballocator plus path fixes

git-svn-id: svn://kolibrios.org@7520 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
siemargl
2018-11-01 17:24:22 +00:00
parent da1718dca4
commit 2650f5831f
24 changed files with 514 additions and 2191 deletions

View File

@@ -2,12 +2,12 @@ format ELF
;include "proc32.inc"
section '.text' executable
public malloc
public free
public realloc
public sysmalloc
public sysfree
public sysrealloc
align 4
malloc:
sysmalloc:
push ebx
mov eax,68
mov ebx,12
@@ -17,7 +17,7 @@ malloc:
ret 4
align 4
free:
sysfree:
push ebx
mov eax,68
mov ebx,13
@@ -27,7 +27,7 @@ free:
ret 4
align 4
realloc:
sysrealloc:
push ebx
mov ebx,20
mov eax,68