mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
18 lines
277 B
Plaintext
18 lines
277 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api018.nas"]
|
|
|
|
GLOBAL _api_settimer
|
|
|
|
[SECTION .text]
|
|
|
|
_api_settimer: ; void api_settimer(int timer, int time);
|
|
PUSH EBX
|
|
MOV EDX,18
|
|
MOV EBX,[ESP+ 8] ; timer
|
|
MOV EAX,[ESP+12] ; time
|
|
INT 0x40
|
|
POP EBX
|
|
RET
|