mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-02 17:49:01 +08:00
15 lines
202 B
Plaintext
15 lines
202 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api001.nas"]
|
|
|
|
GLOBAL _api_putchar
|
|
|
|
[SECTION .text]
|
|
|
|
_api_putchar: ; void api_putchar(int c);
|
|
MOV EDX,1
|
|
MOV AL,[ESP+4] ; c
|
|
INT 0x40
|
|
RET
|