mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
14 lines
187 B
Plaintext
14 lines
187 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api016.nas"]
|
|
|
|
GLOBAL _api_alloctimer
|
|
|
|
[SECTION .text]
|
|
|
|
_api_alloctimer: ; int api_alloctimer(void);
|
|
MOV EDX,16
|
|
INT 0x40
|
|
RET
|