1
0
mirror of https://github.com/emkay/parser-6502.git synced 2024-06-01 01:41:34 +00:00
parser-6502/index.js
Michael Matuzak e86204609b remove stuff
2016-10-11 18:09:19 -07:00

22 lines
396 B
JavaScript

const mona = require('mona')
const directive = require('./parsers/directive')
const instruction = require('./parsers/instruction')
const label = require('./parsers/label')
function assembler (input) {
return mona.parse(
mona.collect(
mona.or(
directive(),
instruction(),
label(),
mona.eol()
)
),
input
)
}
module.exports = assembler