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

📄 tcoff.asm

📁 著名的开源链接器
💻 ASM
字号:
;Sample COFF object file
;assemble with
;NASM -fwin32 tcoff.asm
;link with
;ALINK -oPE tcoff win32.lib -entry main

[extern MessageBoxA]
[extern __imp_MessageBoxA]

[segment .text]
[global main]

main:
push dword 0 ; OK button
push dword title1
push dword string1
push dword 0
call MessageBoxA

push dword 0 ; OK button
push dword title1
push dword string2
push dword 0
call [__imp_MessageBoxA]

ret

[segment .data]

string1: db 'hello world, through redirection',13,10,0
title1: db 'Hello',0
string2: db 'hello world, called through import table',13,10,0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -