parser-6502/test/assembler.js

21 lines
333 B
JavaScript

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: [
{
'address': 'C000'
}
]
},
{
label: 'RESET'
}
])
})