Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
tpruvot
GitHub Repository: tpruvot/cpuminer-multi
Path: blob/linux/asm/aesb-x86.S
1201 views
1
#include <cpuminer-config.h>
2
3
#if defined(__linux__) && defined(__ELF__)
4
.section .note.GNU-stack,"",%progbits
5
#endif
6
7
.text
8
.p2align 6
9
.globl fast_aesb_single_round
10
.globl _fast_aesb_single_round
11
fast_aesb_single_round:
12
_fast_aesb_single_round:
13
ret
14
15
.text
16
.p2align 6
17
.globl fast_aesb_pseudo_round_mut
18
.globl _fast_aesb_pseudo_round_mut
19
fast_aesb_pseudo_round_mut:
20
_fast_aesb_pseudo_round_mut:
21
ret
22
23