在做汇编实验的时候,总是masm来link去debug的十分麻烦,而且默认的自动填充会优先.asm,就自己make一个吧,觉得还是很方便的。

test.bat:

@echo off
set source1
=%1.asm
set source2
=%1.obj
set source3
=%1.exe
masm
%source1% && link.exe %source2% && debug %source3%

 

这样调试起来只需要一个简单的 test xx 就可以了。

相关文章:

  • 2021-10-18
  • 2021-08-16
  • 2021-10-18
  • 2022-12-23
  • 2021-11-02
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
猜你喜欢
  • 2022-12-23
  • 2021-12-19
  • 2022-01-02
  • 2021-11-19
  • 2021-12-29
  • 2022-12-23
相关资源
相似解决方案