Added x86 package
All checks were successful
/ test (push) Successful in 14s

This commit is contained in:
Eduard Urbach 2025-06-23 11:45:57 +02:00
parent 31c5ed614c
commit bac5986425
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
61 changed files with 2745 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package x86_test
import (
"testing"
"git.urbach.dev/cli/q/src/x86"
"git.urbach.dev/go/assert"
)
func TestExtendR0ToR2(t *testing.T) {
assert.DeepEqual(t, x86.ExtendR0ToR2(nil), []byte{0x48, 0x99})
}