0
点赞
收藏
分享

微信扫一扫

引入Irvine32库

eelq 2022-12-08 阅读 74

 1.下载

 ​​http://asmirvine.com/​​

引入Irvine32库_c++

引入Irvine32库_c++_02

 

或者​​https://github.com/Eazybright/Irvine32​​ 也有个库

 

下载后解压到C:\irvine

引入Irvine32库_文件名_03

 

2.创建asm项目

(1)

创建一个空C++项目,再创建一个test.asm的文件 

引入Irvine32库_文件名_04

 

 (2)

右键项目-生成依赖项-生成自定义...

引入Irvine32库_文件名_05

 

 (3)

 如果没有属性里没有Microsoft Macro Assembly

  1. 右击已经建好的项目,添加项
  2. 选择c++文件,并将文件名设置为.asm后缀。
  3. 右击此文件,可见Microsoft Macro Assembly

 

3.导入链接库

(1)

C:\irvine

引入Irvine32库_c++_06

 

 (2)

引入Irvine32库_Assembly_07

 

 (3)

 

引入Irvine32库_c++_08

 

 

4.测试

; This program adds and subtracts 32-bit integers
; and stores the sum in a variable.

INCLUDE Irvine32.inc

.data
val1 dword 10000h
val2 dword 40000h
val3 dword 20000h
finalVal dword ?

.code
main PROC

mov eax,val1 ; start with 10000h
add eax,val2 ; add 40000h
sub eax,val3 ; subtract 20000h
mov finalVal,eax ; store the result (30000h)
call DumpRegs ; display the registers

exit
main ENDP
END main

成功

引入Irvine32库_Assembly_09

 



举报

相关推荐

0 条评论