Click here to Skip to main content
15,891,712 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need some help about creating assembly project using VS2012
I created a new project following examples from youtube but I get an error on my IDE

here is my code.

TITLE MASM Template main.asm

INCLUDE Irvine32.inc

.data
myMessage BYTE "Dux",0dh,0ah,0

.code
main PROC
call Clrscr

mov edx,OFFSET myMessage
call WriteString

exit
main ENDP

END main


I get this errors TITLE is undefined. from my code

I don't have any clue about that.
Posted

1 solution

Oh ! here is a very good article to start with
Assembly Programming with Visual Studio 2010/2012[^]

I know, for the answer I am sharing only a link but I hope, it helps :)
It also has many reference links for the resources.
Thanks !
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900