1
0
mirror of https://github.com/zellyn/go6502.git synced 2024-09-29 23:54:38 +00:00
go6502/asm/flavors/flavors.go
2014-05-08 16:44:08 -07:00

17 lines
394 B
Go

package flavors
import (
"github.com/zellyn/go6502/asm/context"
"github.com/zellyn/go6502/asm/inst"
"github.com/zellyn/go6502/asm/lines"
)
type F interface {
ParseInstr(Line lines.Line) (inst.I, error)
DefaultOrigin() (uint16, error)
SetWidthsOnFirstPass() bool
ReplaceMacroArgs(line string, args []string, kwargs map[string]string) (string, error)
context.Context
context.Labeler
}