mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-10 05:15:05 +08:00
22 lines
508 B
Plaintext
22 lines
508 B
Plaintext
; naskfunc
|
||
; TAB=4
|
||
|
||
[FORMAT "WCOFF"] ; 制作目标文件的模式
|
||
[INSTRSET "i486p"] ; 制定使用486编译
|
||
[BITS 32] ; 3制作32位模式用的机器语言
|
||
[FILE "naskfunc.nas"] ; 文件名
|
||
|
||
GLOBAL _io_hlt,_write_mem8
|
||
|
||
[SECTION .text]
|
||
|
||
_io_hlt: ; void io_hlt(void);
|
||
HLT
|
||
RET
|
||
|
||
_write_mem8: ; void write_mem8(int addr, int data);
|
||
MOV ECX,[ESP+4] ; [ESP+4]中存放的是地址,将其读入ECX
|
||
MOV AL,[ESP+8] ; [ESP+8]中存放的是数据,将其读入AL
|
||
MOV [ECX],AL
|
||
RET
|