mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 18:13:28 +08:00
16 lines
250 B
Plaintext
16 lines
250 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api024.nas"]
|
|
|
|
GLOBAL _api_fsize
|
|
|
|
[SECTION .text]
|
|
|
|
_api_fsize: ; int api_fsize(int fhandle, int mode);
|
|
MOV EDX,24
|
|
MOV EAX,[ESP+4] ; fhandle
|
|
MOV ECX,[ESP+8] ; mode
|
|
INT 0x40
|
|
RET
|