Reduced number of packages

This commit is contained in:
Eduard Urbach 2024-08-26 15:34:34 +02:00
parent e04598da3e
commit dfc39f1f04
Signed by: eduard
GPG key ID: 49226B848C78F6C8
12 changed files with 36 additions and 69 deletions

View file

@ -28,4 +28,6 @@ var (
GeneralRegisters = []cpu.Register{RCX, RBX, RBP, R11, R12, R13, R14, R15}
InputRegisters = SyscallInputRegisters
OutputRegisters = SyscallInputRegisters
WindowsInputRegisters = []cpu.Register{RCX, RDX, R8, R9}
WindowsOutputRegisters = []cpu.Register{RAX}
)