Added basic support for arm64

This commit is contained in:
Eduard Urbach 2025-03-06 13:40:17 +01:00
parent cc1c990dc8
commit dfe807c2e2
Signed by: eduard
GPG key ID: 49226B848C78F6C8
25 changed files with 270 additions and 33 deletions

9
src/config/arch.go Normal file
View file

@ -0,0 +1,9 @@
package config
type Arch uint8
const (
UnknownArch Arch = iota
ARM
X86
)