mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-09 04:53:27 +08:00
16 lines
285 B
Plaintext
16 lines
285 B
Plaintext
; naskfunc
|
|
; TAB=4
|
|
|
|
[FORMAT "WCOFF"] ; 制作目标文件的模式
|
|
[INSTRSET "i486p"] ; 制定使用486编译
|
|
[BITS 32] ; 3制作32位模式用的机器语言
|
|
[FILE "naskfunc.nas"] ; 文件名
|
|
|
|
GLOBAL _io_hlt
|
|
|
|
[SECTION .text]
|
|
|
|
_io_hlt: ; void io_hlt(void);
|
|
HLT
|
|
RET
|