Skip to content

Commit f7791ef

Browse files
committed
docs: fixes formatting in memorybank.md
1 parent d372d6b commit f7791ef

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

docs/library/memorybank.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,29 @@
33
The MemoryBank library allows you to manage paged memory on 128K and later/compatible models.
44

55
This library includes three commands:
6-
- [SetBank](memorybank/setbank.md): Sets the specified bank to memory location $c000.
7-
- [GetBank](memorybank/getbank.md): Returns the memory bank that is located at memory location $c000.
8-
- [SetCodeBank](memorybank/setcodebank.md): Copies the specified memory bank to location $8000
6+
7+
* [SetBank](memorybank/setbank.md): Sets the specified bank to memory location $c000
8+
* [GetBank](memorybank/getbank.md): Returns the memory bank that is located at memory location $c000
9+
* [SetCodeBank](memorybank/setcodebank.md): Copies the specified memory bank to location $8000
910

1011
Only works on 128K and later/compatible models.
1112

1213
**Danger:** If our program exceeds the address $c000 it may cause problems, use this library at your own risk.
1314

1415

15-
## Menory banks
16-
- $c000 > Bank 0 to Bank 7
17-
- $8000 > Bank 2 (fixed)
18-
- $4000 > Bank 5 (screen)
19-
- $0000 > ROM
16+
## Memory banks
17+
18+
- $c000 > Bank 0 to Bank 7
19+
- $8000 > Bank 2 (fixed)
20+
- $4000 > Bank 5 (screen)
21+
- $0000 > ROM
2022

2123
Banks 2 and 5 are permanently fixed at addresses $8000 and $4000, so it is not common to use them.
2224

2325
Banks 1, 3, 5 and 7 are banks in contention with the ULA, their use is not recommended in processes requiring maximum speed.
2426

2527
## See also
28+
2629
- [SetBank](memorybank/setbank.md)
2730
- [GetBank](memorybank/getbank.md)
2831
- [SetCodeBank](memorybank/setcodebank.md)

0 commit comments

Comments
 (0)