Skip to content

Commit

Permalink
ewarm things (#4056)
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Godbolt <matt@godbolt.org>
  • Loading branch information
partouf and mattgodbolt committed Jan 31, 2023
1 parent 621f43a commit a16cb5a
Show file tree
Hide file tree
Showing 13 changed files with 14,181 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/filter-tests.js
Expand Up @@ -28,6 +28,7 @@ import approvals from 'approvals';

import {AsmParser} from '../lib/parsers/asm-parser';
import {CC65AsmParser} from '../lib/parsers/asm-parser-cc65';
import {AsmEWAVRParser} from '../lib/parsers/asm-parser-ewavr';
import {SassAsmParser} from '../lib/parsers/asm-parser-sass';
import {VcAsmParser} from '../lib/parsers/asm-parser-vc';

Expand All @@ -41,6 +42,7 @@ function processAsm(filename, filters) {
if (file.includes('Microsoft')) parser = new VcAsmParser();
else if (filename.includes('sass-')) parser = new SassAsmParser();
else if (filename.includes('cc65-')) parser = new CC65AsmParser();
else if (filename.includes('ewarm-')) parser = new AsmEWAVRParser();
else {
parser = new AsmParser();
parser.binaryHideFuncRe =
Expand Down

0 comments on commit a16cb5a

Please sign in to comment.