From c62f86e0571ed6be92e752bb6d0fb02a97ad849e Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 6 Dec 2025 19:54:45 +0100 Subject: [PATCH] build(asm-lsp): adding configuration of asm-lsp --- .asm-lsp.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .asm-lsp.toml diff --git a/.asm-lsp.toml b/.asm-lsp.toml new file mode 100644 index 0000000..1a86d58 --- /dev/null +++ b/.asm-lsp.toml @@ -0,0 +1,17 @@ +[[project]] +path = "" +version = "0.10.1" +assembler = "nasm" +instruction_set = "x86/x86-64" + +[project.opts] +compiler = "nasm" +compile_flags_txt = [ + "-f", + "elf64", + "-F", + "dwarf", + "-g", +] +diagnostics = true +default_diagnostics = false