Reduced memory allocations

This commit is contained in:
2024-07-17 15:23:57 +02:00
parent f4e4e49fce
commit 8b2cdfa841
3 changed files with 11 additions and 3 deletions

View File

@ -13,3 +13,12 @@ func (a *Assembler) Merge(b Assembler) {
maps.Copy(a.Data, b.Data)
a.Instructions = append(a.Instructions, b.Instructions...)
}
// SetData sets the data for the given label.
func (a *Assembler) SetData(label string, data []byte) {
if a.Data == nil {
a.Data = map[string][]byte{}
}
a.Data[label] = data
}