Implemented length storage of allocated memory

This commit is contained in:
2025-02-09 14:14:41 +01:00
parent 1ff56e0856
commit 2b2e707520
27 changed files with 134 additions and 49 deletions

View File

@ -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)
}