mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-02 17:49:01 +08:00
8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
[INSTRSET "i486p"]
|
|
[BITS 32]
|
|
MOV EAX,1*8 ; OS用的段号
|
|
MOV DS,AX ; 将其存入DS
|
|
MOV BYTE [0x102600],0
|
|
MOV EDX,4
|
|
INT 0x40
|