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 }