12 lines
207 B
Go
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
|
|
}
|