diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-09-15 10:38:34 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-09-15 10:38:34 -0700 |
commit | 76faa50bfb85443f478e2824319d6c8ea119df98 (patch) | |
tree | 2f82c794d24ce37f80415e459b1fa02bab29ebb8 /subx | |
parent | f75c7021d5d406470f04b1ef96e1ec910ee736b8 (diff) | |
download | mu-76faa50bfb85443f478e2824319d6c8ea119df98.tar.gz |
4545
Stale file since 4523.
Diffstat (limited to 'subx')
-rw-r--r-- | subx/vim_errors.subx | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/subx/vim_errors.subx b/subx/vim_errors.subx deleted file mode 100644 index 02a82f25..00000000 --- a/subx/vim_errors.subx +++ /dev/null @@ -1,34 +0,0 @@ -# test file for Vim highlighting - -## unindented lines below should all get Warn highlighting in .subx files -# indented lines should get no highlighting - -# raw displacement in jump/call instructions -e8 10/disp32 -e8 . 10/disp32 -e8/call . -10/disp32 -e8/call . 0x10/disp32 -e9/jump . 10/disp8 -e9/jump . -10/disp8 -e9/jump . f0/disp8 -7c/jump . 10/disp8 -7c/jump . -10/disp8 -eb/jump . 10/disp16 -eb/jump . -10/disp16 -0f/foo 8e/jump . 10/disp16 -0f/foo 8e/jump . -10/disp16 - -## unindented lines below should all get Error highlighting in .subx files -# indented lines should get no highlighting - -# mismatch in label type (call to '$' or jump to non-'$') -e8 $foo/disp32 -e8 . $foo/disp32 -e8/call . $foo/disp32 -e8/call . $foo/disp32 -e9/jump . foo/disp8 - e9/jump . $foo/disp8 - e9/jump . . $foo/disp8 -7c/jump . foo/disp8 -eb/jump . foo/disp16 -0f/foo 8e/jump . foo/disp16 |