Skip to content

Commit ee73b84

Browse files
committed
Update example-docs godbolt links
1 parent 0c2d9fb commit ee73b84

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

examples/chapter02_02/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## The LED program
44

55
<p align="center">
6-
<a href="https://godbolt.org/z/fxWzb6h6f">
6+
<a href="https://godbolt.org/z/zbcof9E94">
77
<img src="https://img.shields.io/badge/try%20it%20on-godbolt-green" alt="godbolt" />
88
</a>
99
</p>
@@ -160,7 +160,7 @@ such as:
160160

161161
## Try it at _godbolt_
162162

163-
Use the following [short link](https://godbolt.org/z/v5f45fMqq)
163+
Use the following [short link](https://godbolt.org/z/zbcof9E94)
164164
to [godbolt](https://godbolt.org) in order to further explore this program.
165165

166166
In the afore-mentioned link, the file [`led.cpp`](./led.cpp) is,
@@ -171,7 +171,7 @@ but not executed because there is no target hardware available.
171171
### On the Metal: _Clear_ and _Set_ Bit
172172

173173
Consider the assembly output near the bottom of the page in the right-side tab
174-
of the [short link](https://godbolt.org/z/v5f45fMqq)
174+
of the [short link](https://godbolt.org/z/zbcof9E94)
175175
to [godbolt](https://godbolt.org). Upon close investigation,
176176
the bit-_clear_ and bit-_set_ opcodes (`cbi` and `sbi`)
177177
can be recognized.

examples/chapter03_02/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Integer Types Having Fixed Widths and Prime Numbers
44

55
<p align="center">
6-
<a href="https://godbolt.org/z/dPbM7v4ff">
6+
<a href="https://godbolt.org/z/Pa3WbG8h6">
77
<img src="https://img.shields.io/badge/try%20it%20on-godbolt-green" alt="godbolt" /></a>
88
</p>
99

@@ -89,7 +89,7 @@ A nifty little PC-based sieving program from the code snippets area helps to
8989
[explore prime numbers](../../code_snippets/chapter03/chapter03_02-002a_explore_prime_numbers.cpp).
9090

9191
This code can be run in its entirety at the following
92-
[short link](https://godbolt.org/z/dPbM7v4ff) to [godbolt](https://godbolt.org).
92+
[short link](https://godbolt.org/z/Pa3WbG8h6) to [godbolt](https://godbolt.org).
9393

9494
## Prime Counting Function
9595

examples/chapter06_01/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## A CRC Benchmark
44

55
<p align="center">
6-
<a href="https://godbolt.org/z/ssTK8TjWj">
6+
<a href="https://godbolt.org/z/vvobo4Pnq">
77
<img src="https://img.shields.io/badge/try%20it%20on-godbolt-green" alt="godbolt" /></a>
88
</p>
99

@@ -91,7 +91,7 @@ The expected result of the CRC-32/MPEG-2 of these
9191
data bytes is `0x0376'E6E7`.
9292

9393
This code can be run in its entirety at the following
94-
[short link](https://godbolt.org/z/ssTK8TjWj) to [godbolt](https://godbolt.org).
94+
[short link](https://godbolt.org/z/vvobo4Pnq) to [godbolt](https://godbolt.org).
9595

9696
The application benchmark task `app::benchmark::task_func`
9797
computes the CRC-32/MPEG-2. The computation is run to completion

examples/chapter10_08/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## External SPI RAM and Computing 10,001 Digits of Pi
44

55
<p align="center">
6-
<a href="https://godbolt.org/z/EMx88ocxn">
6+
<a href="https://godbolt.org/z/cr7MxKsK3">
77
<img src="https://img.shields.io/badge/try%20it%20on-godbolt-green" alt="godbolt" /></a>
88
</p>
99

@@ -66,7 +66,7 @@ A similar implementation of the Pi Spigot program has been setup
6666
at [godbolt](https://godbolt.org), where it can be compiled and executed.
6767
This setup computes $10,001$ decimal digits of $\pi$.
6868

69-
Use the following [short link](https://godbolt.org/z/EMx88ocxn)
69+
Use the following [short link](https://godbolt.org/z/cr7MxKsK3)
7070
to further explore this program.
7171

7272
## 8-Bit MCU Adaptions

examples/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<img src="https://github.com/ckormanyos/real-time-cpp/actions/workflows/real-time-cpp-examples.yml/badge.svg" alt="Build Examples"></a>
66
<a href="https://github.com/ckormanyos/real-time-cpp/blob/master/LICENSE_1_0.txt">
77
<img src="https://img.shields.io/badge/license-BSL%201.0-blue.svg" alt="Boost Software License 1.0"></a>
8-
<a href="https://godbolt.org/z/fxWzb6h6f">
8+
<a href="https://godbolt.org/z/zbcof9E94">
99
<img src="https://img.shields.io/badge/try%20it%20on-godbolt-green" alt="godbolt"></a>
1010
</p>
1111

@@ -137,11 +137,11 @@ in each individual example directory.
137137
## Try it at _godbolt_
138138

139139
<p align="center">
140-
<a href="https://godbolt.org/z/jTPPo51aM">
140+
<a href="https://godbolt.org/z/zbcof9E94">
141141
<img src="https://img.shields.io/badge/try%20it%20on-godbolt-green" alt="godbolt"></a>
142142
</p>
143143

144-
Use this [short link](https://godbolt.org/z/jTPPo51aM)
144+
Use this [short link](https://godbolt.org/z/zbcof9E94)
145145
to [godbolt](https://godbolt.org) in order to further explore
146146
Example [chapter02_02](https://github.com/ckormanyos/real-time-cpp/tree/master/examples/chapter02_02)
147147
(the LED program). In the link, the main source file of the example

0 commit comments

Comments
 (0)