Adds syntax highlighting to 65816/65C816/65802/6502/65C02 files in Atom, with extra support for various compilers.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Matthew Callis 765fce9827
Prepare v10.5.0 release
2 years ago
grammars Merge pull request #19 from ProbablyNotArtyom/master 2 years ago
settings Fixes for depreciations. 8 years ago
snippets First commit. 9 years ago
.gitignore First commit. 9 years ago
CHANGELOG.md Update CHANGELOG.md 3 years ago
LICENSE.md First commit. 9 years ago
README.md Update README 3 years ago
coffeelint.json Updated ACME grammar from GoDot 5 years ago
package.json Prepare v10.5.0 release 2 years ago

README.md

65816/65C816/65802/6502/65C02 Assembly Language Support in Atom

Adds syntax highlighting to 65816/65C816/65802/6502/65C02 files in Atom, with extra support for various compilers:

Originally converted from the various other TextMate bundles:

Contributions are greatly appreciated! Please fork this repository and open a pull request to add snippets, make grammar tweaks, etc.

Installation

In atom, press ctrl+shift+p and enter install package, then type language-65asm into the search bar and hit install.

OR

Run apm install language-65asm in a terminal.

To add automatic syntax highlighting to a set of file extensions, add this to your config.cson (ctrl+shift+p -> config):

"*":
  core:
    customFileTypes: {
      "source.assembly.6502.cc65": [
        "asm"
        "inc"
      ]
    }

See last line in grammar files for names.

Contributors