Moved sizeof functions to a separate package

This commit is contained in:
2024-07-29 12:33:28 +02:00
parent d5953649d9
commit 8d4eb9935d
13 changed files with 83 additions and 40 deletions

View File

@ -4,13 +4,14 @@ import (
"encoding/binary"
"git.akyoto.dev/cli/q/src/build/cpu"
"git.akyoto.dev/cli/q/src/build/sizeof"
)
// MoveRegisterNumber moves an integer into the given register.
func MoveRegisterNumber(code []byte, destination cpu.Register, number int) []byte {
w := byte(0)
if SizeOf(int64(number)) == 8 {
if sizeof.Signed(int64(number)) == 8 {
w = 1
}