refactor(nvim): compile asm files with nasm

This commit is contained in:
Price Hiller 2023-09-05 22:03:27 -05:00
parent 4c62a22fdd
commit 01b09b2abc
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -12,7 +12,8 @@ vim.keymap.set("n", "<leader>fr", function()
vim.fn.mkdir(target_dir, "p") vim.fn.mkdir(target_dir, "p")
local cmd = { local cmd = {
"as", "nasm",
"-felf64",
curr_file, curr_file,
"-o", "-o",
object_path, object_path,