Irvine Library + Visual Studio
ASSEMBLY LANGUAGE
Added on: 4 / 9 / 2018
Description:
To connect IRVINE with VISUAL STUDIO and get rid of the errors of LINK and others, I prefer you all to download Visual Studio 2010 32/64 bit + Irvine 2010 32 bit !
I've tried it all they possible way and figure it out that the best IDE to work on ASSEMBLY of visual studio is 2010 version! because upgraded version have some issues !
---------------------------------------------------------------------------------
THE DOWNLOAD SECTION
Below are the links provided for Visual Studio and Irvine.
Make sure you download them from here to get no errors !
VISUAL STUDIO 2010 DOWNLOAD LINK: CLICK ME !
IRVINE LIBRARY WITH EXAMPLES LINK: CLICK ME !
---------------------------------------------------------------------------------
HOW TO CONNECT IT AND WORK
STEP BY STEP PROCEDURE:
1) Install the Irvine Library in C:\
2) Install the Visual Studio !
3) Open Visual Studio and Select a simple C or C++ File and enter your desire name.
4) Then select a C++ console application and name it with .asm execution !
5) Connect the Irvine libraries path as shown below in Video !
7) Enter the code, the structure code is given below.
8) Try printing your name by debugging it.
-----------------------------------------------------------
PATHS [POINT 5]
-----------------------------------------------------------
Structure Code
CODE :
INCLUDE Irvine32.inc
.data
mymessage BYTE"TRUESIGHT",0dh,0ah,0
.code
main proc
mov edx,OFFSET mymessage
call WriteString
exit
main endp
end main
0 Comments