mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
17 lines
227 B
Plaintext
17 lines
227 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api002.nas"]
|
|
|
|
GLOBAL _api_putstr0
|
|
|
|
[SECTION .text]
|
|
|
|
_api_putstr0: ; void api_putstr0(char *s);
|
|
PUSH EBX
|
|
MOV EDX,2
|
|
MOV EBX,[ESP+8] ; s
|
|
INT 0x40
|
|
POP EBX
|
|
RET
|