12 lines
187 B
Go
12 lines
187 B
Go
package arm_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.urbach.dev/cli/q/src/arm"
|
|
"git.urbach.dev/go/assert"
|
|
)
|
|
|
|
func TestRegisters(t *testing.T) {
|
|
assert.NotContains(t, arm.CPU.General, arm.SP)
|
|
}
|