This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library ieee; | |
| use ieee.std_logic_1164.all; | |
| use ieee.numeric_std.all; | |
| entity flash_reader is | |
| port ( | |
| CLK : in std_logic; -- 50 Mhz onboard clock | |
| RST : in std_logic; | |
| LEDS : out std_logic_vector(7 downto 0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import signal | |
| import sys | |
| start = time.time() | |
| def sigint_handler(signal, frame): | |
| duration = time.gmtime(time.time() - start) | |
| sys.stdout.write(time.strftime('%H:%M:%S', duration) + '\n') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| error: redefinition of 'std::vector<unsigned char> resources::texture' |