mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
25 lines
432 B
Plaintext
25 lines
432 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api005.nas"]
|
|
|
|
GLOBAL _api_openwin
|
|
|
|
[SECTION .text]
|
|
|
|
_api_openwin: ; int api_openwin(char *buf, int xsiz, int ysiz, int col_inv, char *title);
|
|
PUSH EDI
|
|
PUSH ESI
|
|
PUSH EBX
|
|
MOV EDX,5
|
|
MOV EBX,[ESP+16] ; buf
|
|
MOV ESI,[ESP+20] ; xsiz
|
|
MOV EDI,[ESP+24] ; ysiz
|
|
MOV EAX,[ESP+28] ; col_inv
|
|
MOV ECX,[ESP+32] ; title
|
|
INT 0x40
|
|
POP EBX
|
|
POP ESI
|
|
POP EDI
|
|
RET
|