Added fibonacci example

This commit is contained in:
Eduard Urbach 2024-07-09 10:28:14 +02:00
parent cbbceedc4d
commit c2b763ab67
Signed by: eduard
GPG key ID: 49226B848C78F6C8
11 changed files with 107 additions and 16 deletions

View file

@ -22,6 +22,7 @@ const (
)
var (
AllRegisters = []cpu.Register{RAX, RCX, RDX, RBX, RSP, RBP, RSI, RDI, R8, R9, R10, R11, R12, R13, R14, R15}
SyscallRegisters = []cpu.Register{RAX, RDI, RSI, RDX, R10, R8, R9}
GeneralRegisters = []cpu.Register{RCX, RBX, RBP, R11, R12, R13, R14, R15}
CallRegisters = SyscallRegisters