vs2017学习汇编,配置出错,我的计算机64位,能否给出详细步骤,具体点,谢谢大佬

------ 已启动生成: 项目: Project2, 配置: Debug x64 ------
1>Assembling hello.asm...
1>hello.asm(1): error A2008: syntax error : cs
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\BuildCustomizations\masm.targets(50,5): error MSB3721: 命令“ml64.exe /c /nologo /Zi /Fo"x64\Debug\hello.obj" /W3 /errorReport:prompt /Tahello.asm”已退出,返回代码为 1。
1>已完成生成项目“Project2.vcxproj”的操作 - 失败。
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========

assume cs:codesg
codesg segment
mov ax,0123h
mov bx,0456h
add ax,bx
add ax,ax

mov ax,4c00h
int 21h

codesg ends
end

这是上面的代码

assume cs:codesg
codesg segment
mov ax,0123h
mov bx,0456h
add ax,bx
add ax,ax

mov ax,4c00h
int 21h
codesg ends
end

这是上面的代码