--- Log opened Fri Oct 21 00:00:06 2016 | ||
karussellbremser | in the meantime, with the second or third try, the board was 'succesfully' programmed. however, there's no uart output at all. | 08:33 |
---|---|---|
-!- Netsplit *.net <-> *.split quits: ZipCPU, eliask, LoneTech | 19:01 | |
-!- Netsplit *.net <-> *.split quits: oleg-nenashev, mithro, Amadiro, Hoolootwo, _florent_, parasite, julzmb, ZipCPU|Laptop | 19:01 | |
-!- Netsplit over, joins: LoneTech | 19:01 | |
-!- Netsplit *.net <-> *.split quits: Guest3678_, rah, bentley`, Shentino, kc5tja, mafm, LoneTech, karussellbremser, knz, heroux, (+5 more, use /NETSPLIT to show all of them) | 19:01 | |
-!- Netsplit over, joins: rokka | 19:06 | |
-!- Netsplit over, joins: Amadiro | 19:07 | |
-!- Netsplit over, joins: Guest3678_, olofk, SMDwrk, rhythmx | 19:07 | |
-!- Netsplit over, joins: LoneTech | 19:07 | |
-!- Netsplit over, joins: Laksen, kc5tja | 19:08 | |
-!- Netsplit over, joins: karussellbremser | 19:08 | |
-!- Netsplit over, joins: ZipCPU|Laptop, rah, oleg-nenashev, mithro, parasite, Hoolootwo, _florent_, julzmb | 19:08 | |
-!- Netsplit over, joins: Shentino, knz | 19:08 | |
promach | when I tried yosys on openrisc, I have the following error: http://paste2.org/FO1BGLEP | 21:21 |
promach | why ? | 21:21 |
ZipCPU|Laptop | promach: Your yosys command isn't (yet) correct. | 21:45 |
ZipCPU|Laptop | You give it the command to process all of the files until the last one with the error. | 21:45 |
ZipCPU|Laptop | On that one, you just give it the file name. | 21:45 |
promach | huh ? | 21:47 |
promach | ZipCPU|Laptop: On that one, you just give it the file name. ? | 22:30 |
ZipCPU|Laptop | Well, read the error. You process all of the files well until the last one. | 22:30 |
ZipCPU|Laptop | One the last file, the one that it errors out on, it says there's no such command and lists the filename as though it were the command it was given. | 22:31 |
ZipCPU|Laptop | In other words, you gave it the filename, not the command followed by the filename. | 22:31 |
ZipCPU|Laptop | Hence ... the error. | 22:31 |
promach | ZipCPU|Laptop: I do not get your reason for "not the command followed by the filename." | 22:37 |
ZipCPU|Laptop | Let's try this: How are you running yosys? | 22:37 |
promach | yosys -p *.v | 22:38 |
ZipCPU|Laptop | Ok, now do this: echo yosys -p *.v into a window, copy it into a paste bin and send the link. | 22:38 |
promach | http://paste2.org/FO1BGLEP same command used before | 22:40 |
promach | what do you mean ? | 22:41 |
ZipCPU|Laptop | Not quite. You ran "yosys -p *.v" (or so I presume) and posted the results, instead of "echo yosys -p *.v" and posting the results. | 22:42 |
ZipCPU|Laptop | Either way, read th output: over and over you have "-- Parsing (filename) using frontend ..." | 22:43 |
ZipCPU|Laptop | At the end, you have (instead) "-- Running command `mor1kx_branch_prediction.v' --" | 22:43 |
ZipCPU|Laptop | You wanted to parse mor1kx_branch_prediction.v. Why are you running it as a command? | 22:43 |
ZipCPU|Laptop | Then, as one might expect, you get the error: "No such command: mor1kx_branch_prediction.v" | 22:44 |
ZipCPU|Laptop | Well, of course there isn't such a command! That's the file that's supposed to be parsed. | 22:44 |
ZipCPU|Laptop | So ... why did you tell yosys that it was a command? | 22:44 |
promach | I see | 22:44 |
promach | so, instead of command, I want to parse the last file as a filename, right ? | 22:44 |
ZipCPU|Laptop | I think you want to parse all of those files, right? | 22:45 |
ZipCPU|Laptop | I should point out ... I've only gotten so far as parsing the ZipCPU with Yosys. | 22:45 |
ZipCPU|Laptop | I haven't managed to make a full image yet--I've just been focused on other things. | 22:45 |
promach | http://paste2.org/JCAZ7PaI | 22:45 |
ZipCPU|Laptop | So ... in what may be two minutes or less, you may know more than I do. | 22:45 |
ZipCPU|Laptop | Now what I wouldn't give to have a proper man page telling you how to use Yosys. | 22:47 |
* ZipCPU|Laptop snarls, and curls his lips | 22:47 | |
ZipCPU|Laptop | The project I was doing where I got farther used a script with Yosys. | 22:48 |
ZipCPU|Laptop | The script contained such lines as: read_verilog mor1kx_branch_prediction.v | 22:49 |
ZipCPU|Laptop | and so forth. | 22:49 |
ZipCPU|Laptop | Then you might have a line such as: "synth -top orpsoc_top" or some such. | 22:50 |
ZipCPU|Laptop | I was also running yosys with a command similar to "yosys < yosys-script". Check out http://www.clifford.at/yosys for more information. | 22:51 |
promach | sure | 22:52 |
ZipCPU|Laptop | Again, I think you'll probably know more than I do about this within two minutes or so. | 22:52 |
promach | but in this few hours, I am stucked with some other work | 22:52 |
ZipCPU|Laptop | You might manage to get some more help on the #mystorm forum, here on freenode, or you might not. | 22:52 |
ZipCPU|Laptop | That forums got the folks that know the answer, but no one seems to be talking there. | 22:53 |
promach | give me some time | 22:53 |
promach | ZipCPU|Laptop: Could I have the link of your yosys-script for reference as well ? | 22:59 |
ZipCPU|Laptop | in the morning ... | 23:04 |
promach | sure | 23:08 |
--- Log closed Sat Oct 22 00:00:08 2016 |
Generated by irclog2html.py 2.15.2 by Marius Gedminas - find it at mg.pov.lt!