Skip to content

Commit 7f0e72d

Browse files
committed
small changes
1 parent 7bf949c commit 7f0e72d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ Currently, it is not sufficient on it's own - please see [the resources page](re
1919
- Ranges of values follow Rust's syntax, i.e. `a..b` is a range from a (inclusive) to b (exclusive)
2020
and `a..=b` is a range from a (inclusive) to b (inclusive). If either `a` or `b` are missing, the
2121
ranges start/end at their respective limits (i.e. start or end of valid range)
22-
- Addresses are physical unless stated otherwise
2322
- Hexadecimal values are always prefixed with `0x` and separated with an underline every 4 digits,
2423
e.g. `0xDEAD_BEEF`
2524
- Likewise, binary values are always prefixed with `0b` and separated with an underline every 4
2625
digits, e.g. `0b1111_0000_1010_0011`
26+
- Addresses are physical unless stated otherwise
2727
- Every MMIO register is both readable and writable unless stated otherwise
2828
- Every bit flag is 0 for `false` and 1 for `true` unless stated otherwise

theme/custom.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ tbody {
2929
font-size: 0.85em;
3030
}
3131

32+
.mdbook-alerts {
33+
backdrop-filter: brightness(80%);
34+
border-radius: 10px;
35+
}
36+
3237
.frame {
3338
margin-block-start: 1.5em;
3439
margin-block-end: 1.5em;

0 commit comments

Comments
 (0)