X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/28fdb04fd8d62e46c36f959b373d662f1a146448..b1231445c7e56f11d77c81c2e027e5fb85631ca0:/armsrc/util.h

diff --git a/armsrc/util.h b/armsrc/util.h
index d2a85ba0..9c4b4c58 100644
--- a/armsrc/util.h
+++ b/armsrc/util.h
@@ -13,8 +13,8 @@
 
 #include <stddef.h>
 #include <stdint.h>
+#include <common.h>
 
-#define RAMFUNC __attribute((long_call, section(".ramfunc")))
 #define BYTEx(x, n) (((x) >> (n * 8)) & 0xff )
 
 #define LED_RED 1
@@ -27,6 +27,7 @@
 #define BUTTON_DOUBLE_CLICK -2
 #define BUTTON_ERROR -99
 
+size_t nbytes(size_t nbits);
 uint32_t SwapBits(uint32_t value, int nrbits);
 void num_to_bytes(uint64_t n, size_t len, uint8_t* dest);
 uint64_t bytes_to_num(uint8_t* src, size_t len);
@@ -46,4 +47,7 @@ void StartCountUS();
 uint32_t RAMFUNC GetCountUS();
 uint32_t RAMFUNC GetDeltaCountUS();
 
+void StartCountMifare();
+uint32_t RAMFUNC GetCountMifare();
+
 #endif