quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

rdrand.c (112B)


      1 #pragma GCC target("rdrnd")
      2 #include <immintrin.h>
      3 
      4 void main() {
      5   unsigned long long x; _rdrand64_step(&x);
      6 }