From 071631b36fd8809938ebefbd0095426257dc5e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Mon, 13 Jan 2014 21:34:24 +0000 Subject: [PATCH] added vim modeline to asm sources. Needs "set modeline:set modeline=5" in .vimrc --- BaS_gcc/sys/startcf.S | 3 +++ BaS_gcc/util/printf_helper.S | 2 ++ BaS_gcc/xhdi/xhdi_vec.S | 2 ++ 3 files changed, 7 insertions(+) diff --git a/BaS_gcc/sys/startcf.S b/BaS_gcc/sys/startcf.S index 5ccc64a..afd9a16 100644 --- a/BaS_gcc/sys/startcf.S +++ b/BaS_gcc/sys/startcf.S @@ -63,3 +63,6 @@ _rom_entry: /* initialize any hardware specific issues */ bra _initialize_hardware + + +// vim: set syntax=asm68k : diff --git a/BaS_gcc/util/printf_helper.S b/BaS_gcc/util/printf_helper.S index cc83274..7d8eec1 100644 --- a/BaS_gcc/util/printf_helper.S +++ b/BaS_gcc/util/printf_helper.S @@ -34,3 +34,5 @@ printf_helper: lea __MBAR+0x860C,a0 // PSCSTB0 transmitter buffer register move.b d0,(a0) // send byte rts + +// vim: set syntax=asm68k : diff --git a/BaS_gcc/xhdi/xhdi_vec.S b/BaS_gcc/xhdi/xhdi_vec.S index 21a5a01..1ef7a88 100644 --- a/BaS_gcc/xhdi/xhdi_vec.S +++ b/BaS_gcc/xhdi/xhdi_vec.S @@ -61,3 +61,5 @@ _xhdi_sd_install: move.l #_xhdi_vec,d0 // return our BaS vector to TOS move.l d0,a0 // rte + +// vim: set syntax=asm68k :