You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the ARM architecture, it appears that the following line no longer works err = uc_open (UC_ARCH_ARM, bits==64? UC_MODE_64: UC_MODE_32, &uh);
instead I tried err = uc_open (bits==64? UC_ARCH_ARM64: UC_ARCH_ARM, UC_MODE_ARM, &uh);
which works better. My version of unicorn (build from latest source) won't intialize with the former statement.
The text was updated successfully, but these errors were encountered:
For the ARM architecture, it appears that the following line no longer works
err = uc_open (UC_ARCH_ARM, bits==64? UC_MODE_64: UC_MODE_32, &uh);
instead I tried
err = uc_open (bits==64? UC_ARCH_ARM64: UC_ARCH_ARM, UC_MODE_ARM, &uh);
which works better. My version of unicorn (build from latest source) won't intialize with the former statement.
The text was updated successfully, but these errors were encountered: