An .asm file builds successfully in VS2019, even though I have not updated Build Customization for a masm target. How is this possible?

  • Thread starter Thread starter Belloc
  • Start date Start date
B

Belloc

Guest
This is the code:

.386
.MODEL flat, stdcall
.stack 4096

ExitProcess PROTO STDCALL, dwExitCode: DWORD

.CODE
main PROC
mov eax, -1
invoke ExitProcess, 0
main ENDP

END main

This the picture contained Build Customization

1511106.png

And this is the picture of `main.asm` property page:

1511107.png


To enlarge the pictures click them with the mouse right button and select "Open image in new tab"

Continue reading...
 
Back
Top