q/src/asm/LabelType.go
2025-03-13 16:57:13 +01:00

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
)