mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-03 01:53:24 +08:00
19 lines
316 B
Plaintext
19 lines
316 B
Plaintext
[FORMAT "WCOFF"]
|
|
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
[FILE "api025.nas"]
|
|
|
|
GLOBAL _api_fread
|
|
|
|
[SECTION .text]
|
|
|
|
_api_fread: ; int api_fread(char *buf, int maxsize, int fhandle);
|
|
PUSH EBX
|
|
MOV EDX,25
|
|
MOV EAX,[ESP+16] ; fhandle
|
|
MOV ECX,[ESP+12] ; maxsize
|
|
MOV EBX,[ESP+8] ; buf
|
|
INT 0x40
|
|
POP EBX
|
|
RET
|