Removed unnecessary list of registers

This commit is contained in:
2025-03-05 14:41:58 +01:00
parent f2db223684
commit 14abb8202b
4 changed files with 3 additions and 4 deletions

View File

@ -24,12 +24,12 @@ func NewFunction(pkg string, name string, file *fs.File) *Function {
Scopes: []*scope.Scope{{}},
},
CPU: cpu.CPU{
All: x86.AllRegisters,
General: x86.GeneralRegisters,
Input: x86.InputRegisters,
Output: x86.OutputRegisters,
SyscallInput: x86.SyscallInputRegisters,
SyscallOutput: x86.SyscallOutputRegisters,
NumRegisters: 16,
},
},
}