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

@ -2,10 +2,10 @@ package cpu
// CPU represents the processor.
type CPU struct {
All []Register
General []Register
Input []Register
Output []Register
SyscallInput []Register
SyscallOutput []Register
NumRegisters byte
}