Implemented dynamic array indices

This commit is contained in:
2025-01-24 22:47:28 +01:00
parent c0b30e9c22
commit 6dad6fb6a6
10 changed files with 393 additions and 21 deletions

View File

@ -3,7 +3,8 @@ package asm
import "git.akyoto.dev/cli/q/src/cpu"
type Memory struct {
Base cpu.Register
Offset byte
Length byte
Base cpu.Register
Offset byte
OffsetRegister cpu.Register
Length byte
}