13 lines
191 B
Go
13 lines
191 B
Go
package asm
|
|
|
|
// LabelType shows what the label was used for.
|
|
type LabelType uint8
|
|
|
|
const (
|
|
UnknownLabel LabelType = iota
|
|
CommentLabel
|
|
ControlLabel
|
|
DataLabel
|
|
FunctionLabel
|
|
ExternLabel
|
|
)
|