q/src/core/Value.go
2025-02-27 14:16:25 +01:00

12 lines
207 B
Go

package core
import (
"git.urbach.dev/cli/q/src/cpu"
"git.urbach.dev/cli/q/src/types"
)
// Value combines a register with its data type.
type Value struct {
Type types.Type
Register cpu.Register
}