q/src/cpu/CPU.go

12 lines
216 B
Go

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