With Sublime Text 3, I edited NASM.sublime-build file and added
`
{
"cmd": ["nasm", "-f", "bin", "${file}","-l", "${file_base_name}.lst" , "-o", "${file_base_name}.com"],
"file_regex": "^(..[^:]):([0-9]+):?([0-9]+)?:? (.)$",
"working_dir": "${file_path}"
}
`
This made ST3 build my .asm files and highlight errors. I need to do the same for vscode version of this extension but I can't figure it out. Can you suggest solution.
With Sublime Text 3, I edited NASM.sublime-build file and added ` { "cmd": ["nasm", "-f", "bin", "${file}","-l", "${file_base_name}.lst" , "-o", "${file_base_name}.com"], "file_regex": "^(..[^:]):([0-9]+):?([0-9]+)?:? (.)$", "working_dir": "${file_path}" }
` This made ST3 build my .asm files and highlight errors. I need to do the same for vscode version of this extension but I can't figure it out. Can you suggest solution.