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
#include <stdint.h> | |
#include <stddef.h> | |
#include <stdarg.h> | |
#include <stdio.h> | |
volatile uint8_t dbg_tx_tail = 0; | |
volatile uint8_t dbg_tx_head = 0; | |
volatile uint8_t dbg_tx_buf[128] = {0}; | |
volatile uint8_t dbg_rx_tail = 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
#!/bin/bash | |
schema_file=$1 | |
if [[ -z $schema_file ]]; then | |
echo "$0 [Schema File]" | |
exit -1 | |
fi | |
schema=$(basename "${schema_file%.*}") |
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
module checksum( | |
i_clk, | |
i_da, | |
i_data, | |
o_da, | |
o_data | |
); | |
// Module Port Definitions | |
input wire i_clk; |
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
var clickEvent = new MouseEvent('pointerdown', { | |
view: window, | |
bubbles: true, | |
cancelable: true | |
}); | |
var tiles = Array.prototype.slice.call(document.getElementsByClassName("MatchModeQuestionGridBoard-tile")); | |
var lookup = {} | |
for(var i = 0; i < Quizlet.matchModeData.terms.length; i++) { |