I am trying to work with Visual Studio 2015 for the first time for a class I am taking. I have used a few different tutorials and re-downloaded visual studio multiple times but am still having the same issue.
The comments at the top (first 2 lines) are being underlined with red and the error message says, "this declaration has no storage class or type specifier." I'm assuming I messed something up in the settings when I started messing with Visual Studio but have not found a solution all weekend. Has anyone seen this or have any ideas as to what could be going on?
Here is a copy of the sample code I was given to work with:
; AddTwo.asm - adds two 32 - bit integers.
; Chapter 3 example
.386
.model flat,stdcall
.stack 4096
ExitProcess proto,dwExitCode:dword
.code
main proc
mov eax,5
add eax,6
invoke ExitProcess,0
main endp
end main