Renamed arm64 to arm
This commit is contained in:
parent
78aee7999b
commit
c28eace966
@ -1,4 +1,4 @@
|
|||||||
package arm64
|
package arm
|
||||||
|
|
||||||
import "git.akyoto.dev/cli/q/src/cpu"
|
import "git.akyoto.dev/cli/q/src/cpu"
|
||||||
|
|
12
src/arm/Registers_test.go
Normal file
12
src/arm/Registers_test.go
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
package arm_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"git.akyoto.dev/cli/q/src/arm"
|
||||||
|
"git.akyoto.dev/go/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestRegisters(t *testing.T) {
|
||||||
|
assert.NotNil(t, arm.SyscallInputRegisters)
|
||||||
|
}
|
@ -1,12 +0,0 @@
|
|||||||
package arm64_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"git.akyoto.dev/cli/q/src/arm64"
|
|
||||||
"git.akyoto.dev/go/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestRegisters(t *testing.T) {
|
|
||||||
assert.NotNil(t, arm64.SyscallInputRegisters)
|
|
||||||
}
|
|
@ -1,6 +1,6 @@
|
|||||||
# Overview
|
# Overview
|
||||||
|
|
||||||
- [arm64](arm64) - ARM64 implementation (w.i.p.)
|
- [arm](arm) - ARM64 implementation (w.i.p.)
|
||||||
- [asm](asm) - Pseudo-assembler stage
|
- [asm](asm) - Pseudo-assembler stage
|
||||||
- [asmc](asmc) - Compiles assembler to actual machine code
|
- [asmc](asmc) - Compiles assembler to actual machine code
|
||||||
- [ast](ast) - Abstract syntax tree generation with the `Parse` function
|
- [ast](ast) - Abstract syntax tree generation with the `Parse` function
|
||||||
@ -24,5 +24,5 @@
|
|||||||
- [scope](scope) - Defines a `Scope` used for code blocks
|
- [scope](scope) - Defines a `Scope` used for code blocks
|
||||||
- [sizeof](sizeof) - Calculates the byte size of numbers
|
- [sizeof](sizeof) - Calculates the byte size of numbers
|
||||||
- [token](token) - Converts a file to tokens with the `Tokenize` function
|
- [token](token) - Converts a file to tokens with the `Tokenize` function
|
||||||
- [types](types) - Type system (w.i.p.)
|
- [types](types) - Type system
|
||||||
- [x86](x86) - x86-64 implementation
|
- [x86](x86) - x86-64 implementation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user