1
0
mirror of https://github.com/emkay/parser-6502.git synced 2025-01-02 17:30:47 +00:00
parser-6502/example/index.js
Michael Matuzak dfe822b086 working
2016-10-12 16:41:28 -07:00

6 lines
146 B
JavaScript

const fs = require('fs')
const parser = require('.')
const input = fs.readFileSync('./example.s', 'utf-8')
const r = parser(input)
console.log(r)