Implemented array storage

This commit is contained in:
2024-07-20 17:35:26 +02:00
parent d35c07ed1c
commit 155df7c44c
17 changed files with 150 additions and 45 deletions

View File

@ -165,6 +165,12 @@ func (a Assembler) Finalize() ([]byte, []byte) {
case RETURN:
code = x64.Return(code)
case STORE:
switch operands := x.Data.(type) {
case *MemoryNumber:
code = x64.StoreNumber(code, operands.Address.Base, operands.Address.Offset, operands.Address.Length, operands.Number)
}
case SYSCALL:
code = x64.Syscall(code)