Adds syntax highlighting to 65816/65C816/65802/6502/65C02 files in Atom, with extra support for various compilers.
Go to file
Matthew Callis 05941820ac
Update README with addition and new contributor
Added WTCTools by Western Design Center support and georgjz to contributors.
2018-04-04 21:17:29 -07:00
grammars Add WDCTools support 2018-03-22 22:03:41 +01:00
settings Add WDCTools support 2018-03-22 22:03:41 +01:00
snippets First commit. 2014-03-01 19:08:22 -08:00
.gitignore First commit. 2014-03-01 19:08:22 -08:00
LICENSE.md First commit. 2014-03-01 19:08:22 -08:00
package.json Prepare 6.0.0 release 2018-04-04 16:08:54 -07:00
README.md Update README with addition and new contributor 2018-04-04 21:17:29 -07:00

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