Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions vm/interp.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
#elif defined(NEKO_GCC) && defined(NEKO_PPC)
# define ACC_BACKUP
# define ACC_RESTORE
# define ACC_REG asm("26")
# define PC_REG asm("27")
# define SP_REG asm("28")
# define CSP_REG asm("29")
# define VM_REG asm("30")
# define ACC_REG asm("25")
# define PC_REG asm("26")
# define SP_REG asm("27")
# define CSP_REG asm("28")
# define VM_REG asm("29")
# define VM_ARG _vm
#else
# define ACC_BACKUP
Expand Down