forked from KolibriOS/kolibrios
b34f9856cb
git-svn-id: svn://kolibrios.org@9353 a494cfbc-eb01-0410-851d-a64ba20cac60
23 lines
414 B
PHP
23 lines
414 B
PHP
PGAlloc:
|
|
; in: ecx=size
|
|
; out: eax=pointer or NULL
|
|
push ebx
|
|
push 68
|
|
pop eax
|
|
push 12
|
|
pop ebx
|
|
int 40h
|
|
pop ebx
|
|
ret
|
|
PGFree:
|
|
; in: ecx=pointer
|
|
; destroys eax
|
|
push ebx
|
|
push 68
|
|
pop eax
|
|
push 13
|
|
pop ebx
|
|
int 40h
|
|
pop ebx
|
|
ret
|