diff options
Diffstat (limited to 'mnv/runtime/compiler/bdf.mnv')
| -rw-r--r-- | mnv/runtime/compiler/bdf.mnv | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mnv/runtime/compiler/bdf.mnv b/mnv/runtime/compiler/bdf.mnv new file mode 100644 index 0000000000..dc2d5d450c --- /dev/null +++ b/mnv/runtime/compiler/bdf.mnv @@ -0,0 +1,23 @@ +" MNV compiler file +" Compiler: BDF to PCF Conversion +" Previous Maintainer: Nikolai Weibull <now@bitwi.se> +" Contributors: Enno Nagel +" Last Change: 2024 Mar 29 +" 2024 Apr 03 by The MNV Project (removed :CompilerSet definition) + +if exists("current_compiler") + finish +endif +let current_compiler = "bdf" + +let s:cpo_save = &cpo +set cpo-=C + +CompilerSet makeprg=bdftopcf\ $* +CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m, + \%-Z%p^, + \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt, + \%-G%.%# + +let &cpo = s:cpo_save +unlet s:cpo_save |
