Refactored arm package

This commit is contained in:
Eduard Urbach 2025-04-16 17:38:48 +02:00
parent c238e3a190
commit f3f3ccc95f
Signed by: eduard
GPG key ID: 49226B848C78F6C8
26 changed files with 102 additions and 53 deletions

View file

@ -21,6 +21,6 @@ func TestLoadAddress(t *testing.T) {
for _, pattern := range usagePatterns {
t.Logf("adr %s, %d", pattern.Destination, pattern.Number)
code := arm.LoadAddress(pattern.Destination, pattern.Number)
assert.DeepEqual(t, code, pattern.Code)
assert.Equal(t, code, pattern.Code)
}
}