Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data GenericOperand storage
- = Memory (GenericAddress storage) Int
- | EffectiveAddress (GenericAddress storage)
- | Storage storage
- | Immediate Word64
Documentation
data GenericOperand storage Source #
A generic statepart, based on polymorphic type storage
.
Memory (GenericAddress storage) Int | A region in memory, whose address is stored in the given state part and whose size in bytes is given in the Int |
EffectiveAddress (GenericAddress storage) | An address itself, but not the value stored at the address. |
Storage storage | A storage location such as a register or a variable |
Immediate Word64 | An immediate value |