From 4061939a8f1a4afd749434ed70a6122016c0a8dc Mon Sep 17 00:00:00 2001 From: Jonas Hvid Date: Sat, 7 Mar 2020 19:30:40 +0100 Subject: [PATCH] Add syntax=fasm to FASM files --- impl.asm | 2 ++ main.asm | 2 ++ 2 files changed, 4 insertions(+) diff --git a/impl.asm b/impl.asm index 9ad2278..a9b8564 100644 --- a/impl.asm +++ b/impl.asm @@ -1,3 +1,5 @@ +;; vim: syntax=fasm + segment readable executable macro printlen msg, len { diff --git a/main.asm b/main.asm index 1a41bb9..183264c 100644 --- a/main.asm +++ b/main.asm @@ -1,3 +1,5 @@ +;; vim: syntax=fasm + format ELF64 executable ;; The code in this macro is placed at the end of each Forth word. When we are -- 2.39.2