, . . -, , VS 2005 , , , , VS. "". , , , .
:
;sh3.asm - test using c run-time library functions
.586
.model flat
EXTRN _printf:PROC
.data
msgHello DB ' C!', 0ah, 00h
.code
_main PROC
push OFFSET msgHello
call _printf
add esp, 4
ret 0
_main ENDP
END
, 1:
; .asm . , _main. - .
MASM, ; Microsoft Macro Assembler.
→ properties → linker → C. , msvcrt.lib msvcrtd.lib . : .
.
2:
; .asm . . , .
MASM, ; Microsoft Macro Assembler.
→ properties → linker → C. , msvcrt.lib msvcrtd.lib .
, Linker, , , , start.
, → : type = 'win32' name= 'Microsoft.VC90.CRT' version = '9.0.21022.8' processorArchitecture = 'x86' publicKeyToken = '1fc8b3b9a1e18e3b' .
.
, , , , , VS Windows. , 1, . , .
, 1 . _main - , C. . , : C, 2 ; !
, 1, API Win32 C, . , windows api, c .
, Windows Visual Studio.
!
~ jiangshi