Removed unnecessary list of registers

This commit is contained in:
Eduard Urbach 2025-03-05 14:41:58 +01:00
parent bfa8f9c7c4
commit cc1c990dc8
Signed by: eduard
GPG key ID: 49226B848C78F6C8
4 changed files with 3 additions and 4 deletions

View file

@ -22,7 +22,6 @@ const (
)
var (
AllRegisters = []cpu.Register{RAX, RCX, RDX, RBX, RSP, RBP, RSI, RDI, R8, R9, R10, R11, R12, R13, R14, R15}
SyscallInputRegisters = []cpu.Register{RAX, RDI, RSI, RDX, R10, R8, R9}
SyscallOutputRegisters = []cpu.Register{RAX, RCX, R11}
GeneralRegisters = []cpu.Register{RBX, R12, R13, R14, R15, RCX, R11}