Fix markup.

This commit is contained in:
Oleksii Trekhleb 2020-10-05 22:26:24 +03:00
parent d6b8dd394a
commit 477f30b0bd

View File

@ -275,14 +275,14 @@ Légende:
``` ```
A = 3: 011 A = 3: 011
B = 6: 110 B = 6: 110
┌──────┬────┬────┬───────┬────────┬───────┬────────┬─────────┐ ┌──────┬────┬────┬───────────────────┬─────────┬──────────────────────┐
│ bit │ ai │ bi │ carryIn │ carryOut │ bitSum │ resultBin │ resultDec │ │ bit │ ai │ bi │ carryIn │ carryOut │ bitSum │ resultBin │ resultDec │
├──────┼────┼────┼───────┼────────┼───────┼────────┼─────────┤ ├──────┼────┼────┼───────────────────┼─────────┼──────────────────────┤
│ 0 │ 1 │ 0 │ 0 │ 0 │ 1 │ 1 │ 1 │ │ 0 │ 1 │ 0 │ 0 │ 0 │ 1 │ 1 │ 1 │
│ 1 │ 1 │ 1 │ 0 │ 1 │ 0 │ 01 │ 1 │ │ 1 │ 1 │ 1 │ 0 │ 1 │ 0 │ 01 │ 1 │
│ 2 │ 0 │ 1 │ 1 │ 1 │ 0 │ 001 │ 1 │ │ 2 │ 0 │ 1 │ 1 │ 1 │ 0 │ 001 │ 1 │
│ 3 │ 0 │ 0 │ 1 │ 0 │ 1 │ 1001 │ 9 │ │ 3 │ 0 │ 0 │ 1 │ 0 │ 1 │ 1001 │ 9 │
└──────┴────┴────┴───────┴────────┴───────┴────────┴─────────┘ └──────┴────┴────┴───────────────────┴─────────┴──────────────────────┘
``` ```
> Voir [fullAdder.js](fullAdder.js) pour plus de détails. > Voir [fullAdder.js](fullAdder.js) pour plus de détails.