mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
17 lines
233 B
Plaintext
17 lines
233 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api014.nas"]
|
|
|
|
GLOBAL _api_closewin
|
|
|
|
[SECTION .text]
|
|
|
|
_api_closewin: ; void api_closewin(int win);
|
|
PUSH EBX
|
|
MOV EDX,14
|
|
MOV EBX,[ESP+8] ; win
|
|
INT 0x40
|
|
POP EBX
|
|
RET
|