Added build result struct

This commit is contained in:
2024-06-26 20:16:18 +02:00
parent 3268f7a7ee
commit 988a538661
7 changed files with 61 additions and 54 deletions

View File

@ -11,13 +11,6 @@ type Assembler struct {
Instructions []Instruction
}
// New creates a new assembler.
func New() *Assembler {
return &Assembler{
Instructions: make([]Instruction, 0, 8),
}
}
// Finalize generates the final machine code.
func (a *Assembler) Finalize() ([]byte, []byte) {
code := make([]byte, 0, len(a.Instructions)*8)