From 1038de625015cd24b6072575fecc5011e91982b1 Mon Sep 17 00:00:00 2001 From: Max Bane Date: Sat, 10 Jan 2015 21:22:14 -0500 Subject: [PATCH] Add forgotten .res command as a type. --- syntax/asm_ca65.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/syntax/asm_ca65.vim b/syntax/asm_ca65.vim index 62342b9..feead90 100644 --- a/syntax/asm_ca65.vim +++ b/syntax/asm_ca65.vim @@ -105,7 +105,7 @@ syn match asm_ca65Include "\.include\>" syn match asm_ca65Include "\.incbin\>" syn match asm_ca65Include "\.macpack\>" " Imports / Exports -" Storage types +" Storage types / reservation syn match asm_ca65Type "\.addr\>" syn match asm_ca65Type "\.faraddr\>" syn match asm_ca65Type "\.asciiz\>" @@ -118,6 +118,7 @@ syn match asm_ca65Type "\.hibytes\>" syn match asm_ca65Type "\.lobytes\>" syn match asm_ca65Type "\.tag\>" syn match asm_ca65Type "\.word\>" +syn match asm_ca65Type "\.res\>" " Conditionals syn match asm_ca65Cond "\.if\>" syn match asm_ca65Cond "\.ifp02\>"