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