Parser for 6502 assembler
Go to file
Michael Matuzak a34eed5bd1 docs: fixing example and updating readme 2016-10-12 20:19:46 -07:00
example docs: fixing example and updating readme 2016-10-12 20:19:46 -07:00
parsers working 2016-10-12 16:41:28 -07:00
test working 2016-10-12 16:41:28 -07:00
.gitignore Initial commit 2016-09-25 12:16:46 -07:00
.travis.yml docs: readme and travis 2016-10-12 20:00:32 -07:00
CHANGELOG.md chore(release): 1.0.1 2016-10-12 20:00:02 -07:00
LICENSE Initial commit 2016-09-25 12:16:46 -07:00
README.md docs: fixing example and updating readme 2016-10-12 20:19:46 -07:00
index.js remove stuff 2016-10-11 18:09:19 -07:00
package.json chore(release): 1.0.1 2016-10-12 20:00:02 -07:00

README.md

parser-6502

Parser for 6502 assembler

This is a parser written in javascript that will parse assembler written for the 6502 8-bit microprocessor.

Build Status Standard - JavaScript Style Guide Standard Version

Usage

const fs = require('fs')
const parser = require('parser-6502')
const input = fs.readFileSync('./asm.s', 'utf-8')
const result = parser(input)

console.log(result)

API

result = parser(input)

[
  {
    "directive": ".db",
    "args": [
      {
        "binary": "00000001"
      }
    ]
  }
]

Installation

npm i paser-6502

License

MIT