?? first.asm
字號:
;=============================================================================
; Kitnix ver 0.01
; Write by Kit
; 2008-10-31
;
;
; First.asm
; Echo a String on the screen
;=============================================================================
;%define _BOOT_DEBUG_
org 0100h
mov ax, cs
mov ds, ax
mov es, ax
mov ax, Message
mov bp, ax
mov cx, 28
mov ax, 01301H
mov bx, 000CH
mov dh, 13
mov dl, 10
int 10h
%ifdef _BOOT_DEBUG_
mov ax, 4c00H
int 21H
%else
jmp 09000H:0100H
%endif
Message: db "This is the first program.", 13, 10
;MessageLength dw 28
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -