1
0
mirror of https://github.com/zellyn/go6502.git synced 2024-11-15 09:05:21 +00:00
go6502/asm/doc.go

17 lines
604 B
Go
Raw Normal View History

2014-03-05 01:42:51 +00:00
/*
Package asm provides routines for assembling 6502 code. It currently
emulates the S-C Macro Assembler. The goal is to support (at least)
as65 and Merlin assembly files too.
Once those three (two ancient, one modern) are complete, adding
additional flavors should be straightforward.
TODO(zellyn): make errors return line and character position.
TODO(zellyn): scma requires .EQ and .BS to have known values. Is this universal?
TODO(zellyn): make lineparse have a line, rather than the reverse.
TODO(zellyn): implement ca65 and compile ehbasic
2014-05-08 00:44:03 +00:00
TODO(zellyn): implement named macro args
2014-03-05 01:42:51 +00:00
*/
package asm