package cpu // CPU represents the processor. type CPU struct { General []Register Input []Register Output []Register SyscallInput []Register SyscallOutput []Register NumRegisters byte }