1
0
mirror of https://github.com/zellyn/go6502.git synced 2024-09-29 08:56:18 +00:00
go6502/asm/flavors/flavors.go
2014-07-23 08:13:53 -07:00

18 lines
419 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)
LocalMacroLabels() bool
context.Context
context.Labeler
}