mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-25 06:37:14 -04:00
* Clean-up README.md and top-level directory This removes the duplicate `scripts` and `util` directories. Furthermore the README is condensed by collapsing the citation and adding the CITATION file to the repository. Signed-off-by: Florian Zaruba <florian@openhwgroup.org> * Re-name icache req/rsp structs The structs used to communicate with the icache have contained the direction, which makes no sense for structs since they inherently don't have any direction. Signed-off-by: Florian Zaruba <florian@openhwgroup.org> --------- Signed-off-by: Florian Zaruba <florian@openhwgroup.org>
10 lines
No EOL
288 B
Python
Executable file
10 lines
No EOL
288 B
Python
Executable file
import csv
|
|
|
|
with open('iladata.csv', 'r') as csvfile:
|
|
csvreader = csv.reader(csvfile, delimiter=',', quotechar='|')
|
|
for row in csvreader:
|
|
if (row[5] == '1'):
|
|
print(row[3])
|
|
if (row[6] == '1'):
|
|
print(row[4])
|
|
# print(', '.join(row[])); |