Implemented more arm64 instructions

This commit is contained in:
2025-03-13 23:12:15 +01:00
parent 5b3769a0db
commit ac14ab4f7a
18 changed files with 218 additions and 29 deletions

View File

@ -6,8 +6,7 @@ import (
// StoreRegister writes the contents of the register to a memory address.
func StoreRegister(source cpu.Register, base cpu.Register, offset int, length byte) uint32 {
offset &= 0b1_1111_1111
common := uint32(offset)<<12 | uint32(base)<<5 | uint32(source)
common := memory(source, base, offset)
switch length {
case 1: