Improved code generation

This commit is contained in:
Eduard Urbach 2024-07-03 16:37:59 +02:00
parent 5ca086f177
commit 75672c1e16
Signed by: eduard
GPG key ID: 49226B848C78F6C8
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
}