1
0
mirror of https://github.com/emkay/parser-6502.git synced 2024-06-11 20:29:33 +00:00
parser-6502/test/assembler.js

19 lines
303 B
JavaScript
Raw Normal View History

2016-10-02 21:54:14 +00:00
const tap = require('tap')
const parser = require('..')
tap.test('should parse the basics', (t) => {
t.plan(1)
const input = '.org $C000\nRESET:\n'
t.deepEqual(parser(input), [
{
directive: '.org',
args: [
'$,C000'
]
},
{
label: 'RESET:'
}
])
})