mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-02 17:49:01 +08:00
18 lines
254 B
Plaintext
18 lines
254 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api009.nas"]
|
|
|
|
GLOBAL _api_malloc
|
|
|
|
[SECTION .text]
|
|
|
|
_api_malloc: ; char *api_malloc(int size);
|
|
PUSH EBX
|
|
MOV EDX,9
|
|
MOV EBX,[CS:0x0020]
|
|
MOV ECX,[ESP+8] ; size
|
|
INT 0x40
|
|
POP EBX
|
|
RET
|