⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 3.asm

📁 主要是演示汇编的多文件调用并和C、C++配合使用的程序。
💻 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 + -