mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
15 lines
215 B
Plaintext
15 lines
215 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api022.nas"]
|
|
|
|
GLOBAL _api_fclose
|
|
|
|
[SECTION .text]
|
|
|
|
_api_fclose: ; void api_fclose(int fhandle);
|
|
MOV EDX,22
|
|
MOV EAX,[ESP+4] ; fhandle
|
|
INT 0x40
|
|
RET
|