From: Jonas Hvid Date: Sat, 7 Mar 2020 18:30:40 +0000 (+0100) Subject: Add syntax=fasm to FASM files X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=4061939a8f1a4afd749434ed70a6122016c0a8dc;p=rrq%2Fjonasforth.git Add syntax=fasm to FASM files --- 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