mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-09 12:03:27 -04:00
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
|