From: Luke Kenneth Casson Leighton Date: Mon, 26 Jul 2021 14:37:29 +0000 (+0100) Subject: add link to firststeps doc, experiment with codeblock-in-link X-Git-Tag: DRAFT_SVP64_0_1~584 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1fea7e25941eb9f9df555c89d987d53447e2f55e;p=libreriscv.git add link to firststeps doc, experiment with codeblock-in-link --- diff --git a/docs/firststeps.mdwn b/docs/firststeps.mdwn index 8aa5a290b..50bf205f9 100644 --- a/docs/firststeps.mdwn +++ b/docs/firststeps.mdwn @@ -166,7 +166,7 @@ method called `run_tst_program`. This method, in turn, calls `run_tst`, and this is the place where the magic happens. In `process` nested function, we actually simulate that our instructions are executed one-by-one, literally calling `yield from simulator.execute_one()`. And this method inside the -simulator instance belongs to `src/openpower/decoder/isa/caller.py` script. +simulator instance belongs to [`src/openpower/decoder/isa/caller.py`](https://git.libre-soc.org/?p=openpower-isa.git;a=blob;f=src/openpower/decoder/isa/caller.py;hb=HEAD) script. Inside `execute_one` method, the most crucial part is `yield from self.call(opname)` call; and, if we take a look inside of the `call` method, we will see that, aside of the aforementioned log