mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-24 16:14:59 +08:00
Merge pull request #1641 from Doridian/feat/arm-neon-default
Minimal change to utilize ARM NEON capabilities
This commit is contained in:
commit
03aa9e27c8
2 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
|||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||
|
||||
## [unreleased][unreleased]
|
||||
- Use 128 bit slices whenever ARM NEON is available to speed up hardnested (@Doridian)
|
||||
- Fixed compilation of mfd_aes_brute on Apple M1 based Macs (@Doridian)
|
||||
- Changed calculation of companion ARM firmware hash to be uniform accross platforms (@Doridian)
|
||||
- Changed `hf mf *` - verbose flag now also decode and prints found value blocks (@iceman1001)
|
||||
|
|
|
@ -74,6 +74,8 @@ THE SOFTWARE.
|
|||
#define MAX_BITSLICES 128
|
||||
#elif defined(__SSE2__)
|
||||
#define MAX_BITSLICES 128
|
||||
#elif defined(__ARM_NEON)
|
||||
#define MAX_BITSLICES 128
|
||||
#else // MMX or SSE or NOSIMD
|
||||
#define MAX_BITSLICES 64
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue