?? skel.asm
字號:
;; file: skel.asm; This file is a skeleton that can be used to start assembly programs.%include "asm_io.inc"segment .data;; initialized data is put in the data segment here;segment .bss;; uninitialized data is put in the bss segment; segment .text global _asm_main_asm_main: enter 0,0 ; setup routine pusha;; code is put in the text segment. Do not modify the code before; or after this comment.; popa mov eax, 0 ; return back to C leave ret
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -