crsandu

Dediu_1

Feb 28th, 2019
4,228
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VHDL 0.87 KB | None | 0 0
  1. library IEEE;
  2. use IEEE.STD_LOGIC_1164.ALL;
  3. use IEEE.STD_LOGIC_ARITH.ALL; -- pentru operatii aritmetice
  4. use IEEE.STD_LOGIC_UNSIGNED.ALL;
  5.  
  6. entity Counter is    
  7.     PORT(
  8.         CLK: IN std_logic;
  9.         CE: IN std_logic;
  10.         R_OUT: OUT std_logic_vector(15 downto 0));
  11. end Counter;
  12.  
  13. architecture Behavioral of Counter is
  14. begin
  15.     NUMARATOR: process(CLK, CE)
  16.         variable valoare: std_logic_vector(15 downto 0) := (others => '0'); -- facem tot numarul 0
  17.     begin
  18.         IF(CE = '1') THEN
  19.             IF(RISING_EDGE(CLK)) THEN
  20.                 IF(valoare = x"FFFF") THEN
  21.                     valoare := (others=>'0');
  22.                 ELSE
  23.                     valoare := valoare + x"0001";
  24.                 END IF;
  25.             END IF;
  26.         END IF;
  27.        
  28.         R_OUT <= valoare; -- punem valoarea pe iesire
  29.     end process NUMARATOR;
  30. end Behavioral;
Advertisement
Comments
  • Lernodorn
    124 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • User was banned
Add Comment
Please, Sign In to add comment