Implemented length storage of allocated memory
This commit is contained in:
parent
79bb606e8d
commit
3043e4e2c4
27 changed files with 134 additions and 49 deletions
|
@ -24,5 +24,5 @@ func (a *Assembler) SetData(label string, bytes []byte) {
|
|||
a.Data = data.Data{}
|
||||
}
|
||||
|
||||
a.Data[label] = bytes
|
||||
a.Data.Insert(label, bytes)
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ import "git.akyoto.dev/cli/q/src/cpu"
|
|||
|
||||
type Memory struct {
|
||||
Base cpu.Register
|
||||
Offset byte
|
||||
Offset int8
|
||||
OffsetRegister cpu.Register
|
||||
Length byte
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue