📄 3.asm
字号:
.386
.model flat,stdcall
option casemap:none
include windows.inc
include user32.inc
includelib user32.lib
public print
data segment
hello db '夏军,040613',0
caption db 'Win32汇编',0
data ends
code segment
print proc near
push MB_OK+MB_ICONINFORMATION
push offset caption
push offset hello
push NULL
call MessageBox
ret
print endp
code ends
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -