Improved code generation

This commit is contained in:
2024-07-03 16:37:59 +02:00
parent 795935ddfb
commit 4d88260333
15 changed files with 215 additions and 275 deletions

View File

@ -2,10 +2,10 @@ package cpu
// CPU represents the processor.
type CPU struct {
Call []Register
General []Register
Syscall []Register
Return []Register
Input []Register
Output []Register
usage uint64
}