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

@ -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
}