📄 hello.mak
字号:
# Set this macro to 'VCNT' to use the Visual C++ tools.
# Set it to anything else to use the Win32 SDK tools.
TOOLS = VCNT
!IF "$(TOOLS)" == "VCNT"
LINK = link
!ELSE
LINK = link32
!ENDIF
all:
ml /c /coff hello.asm
$(LINK) -subsystem:console -entry:_start -out:hello.exe \
hello.obj kernel32.lib
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -