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?
|
2014-05-05 03:51:58 +00:00
|
|
|
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
|