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
| source [find interface/jlink.cfg] | |
| adapter_khz 1000 | |
| adapter_nsrst_delay 400 | |
| if { [info exists CHIPNAME] } { | |
| set _CHIPNAME $CHIPNAME | |
| } else { | |
| set _CHIPNAME ls1021a |
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 <bits/stdc++.h> | |
| #define INF (1 << 29) | |
| #define rep2(i,m,n) for(int i=(int)(m);i<(int)(n);i++) | |
| #define rep(i,n) rep2(i,0,n) | |
| #define EPS 1e-10 | |
| using namespace std; | |
| typedef long long ll; |
NewerOlder