Skip to content

Commit 0efe923

Browse files
authored
Merge pull request #918 from polluks/main
Fixed typos
2 parents d90a26d + b035f5e commit 0efe923

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/architectures/uzebox.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
* RAM Memory: 4kb
77
* Colours: 256 (same palette as from msx2-screen8, or zxspectrum-ulaplus)
88
* Video "Memory": 1 byte (!) - The video display is just a 8bit port, used defaultly from the interrupt video-mode kernels.
9-
* Tile Display Memory Area: is (defaultly) inside the 4kb RAM memory, size depending on how is it used from the video-mode kernel choosed. Most of the ready video modes can have 256 different tiles available.
10-
* Pattern Display Memory Area (tiles and sprites): is (defaultly) inside the 64kb Flash memory, size depending on how is it used from the video-mode kernel choosed
11-
* Sprite Attribute Memory Area: is (defaultly) inside the 4kb RAM memory, size depending on how is it used from the video-mode kernel choosed
9+
* Tile Display Memory Area: is (defaultly) inside the 4kb RAM memory, size depending on how is it used from the video-mode kernel chosen. Most of the ready video modes can have 256 different tiles available.
10+
* Pattern Display Memory Area (tiles and sprites): is (defaultly) inside the 64kb Flash memory, size depending on how is it used from the video-mode kernel chosen
11+
* Sprite Attribute Memory Area: is (defaultly) inside the 4kb RAM memory, size depending on how is it used from the video-mode kernel chosen
1212
* Video Modes: 9 (up to now) - Since display modes are from interrupt, anyone is welcome on creating new video-modes when needed (and skilled for helping). Theoretically, from 1 cycle from ATmega644 processor, a display resolution like 1440x240 could be obtained. But since at least 4 cycles are needed to display a pixel, the width resolutions available from video modes are 360 (4 cycles), 288 (5), 240 (6), 180 (8), 144 (10) and 120 (12).
1313

1414
## more information

docs/code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Returned value type is [UByte](types.md#UByte).
1919
REM ASCII CODE of "A"
2020
PRINT "ASCII CODE of A is "; CODE("A")
2121
LET a$ = ""
22-
PRINT "ASCII CODE of emtpy string is "; CODE(a$)
22+
PRINT "ASCII CODE of empty string is "; CODE(a$)
2323
```
2424

2525
## Remarks

docs/if.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ End If
3737
```
3838

3939

40-
Since **IF** is a _sentence_, it can be nested; however, remember that _every_ **IF** _must be closed with_ **END IF** when the line is splitted after **THEN** (mutiline **IF**):
40+
Since **IF** is a _sentence_, it can be nested; however, remember that _every_ **IF** _must be closed with_ **END IF** when the line is split after **THEN** (mutiline **IF**):
4141
```
4242
If a < 5 Then
4343
Print "A is less than five"

docs/library/keys/getkey.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ x = GetKey
2222
PRINT "You pressed the "; CHR x; " key"
2323
```
2424
Will print the key pressed. Unlike [INKEY$](../../inkey.md) it returns an Ubyte (ASCII code)
25-
which is more efficent that working with strings.
25+
which is more efficient that working with strings.
2626

2727
### See also
2828

2929
* [GetKeyScanCode](getkeyscancode.md)
3030
* [MultiKeys](multikeys.md)
3131

3232

33-
Back to parent page: [Keys ibrary](../keys.bas.md)
33+
Back to parent page: [Keys library](../keys.bas.md)

docs/library/print64.bas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ BLp64_END_LOOP:
211211
sra a ;
212212
sra a ;
213213
sra a ; Multiply by 8 60155 203 47
214-
add a, 88 ; Add to attrbute base address
214+
add a, 88 ; Add to attribute base address
215215
ld h, a ; Put high byte value for attribute into H.
216216
ld a, d ; get y value again
217217
and 7 ; set within third

docs/library/putchars.bas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Asm
9595
INC DE
9696
INC H
9797
ld a,(DE)
98-
LD (HL),a ; Eigth Row
98+
LD (HL),a ; Eighth Row
9999
100100
INC DE ; Move to next data item.
101101

docs/library/puttile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It uses 36 bytes of data, starting at the address given.
2020

2121

2222
```
23-
' Routine to place a 16 pixel by 16 pixel "Tile" onto the screen at character position x,y from adddress given.
23+
' Routine to place a 16 pixel by 16 pixel "Tile" onto the screen at character position x,y from address given.
2424
' Data must be in the format of 16 bit rows, followed by attribute data.
2525
' (c) 2010 Britlion, donated to the ZX BASIC project.
2626
' Thanks to Boriel, LCD and Na_than for inspiration behind this.

docs/pause.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PAUSE <value>
77

88
Just as in Sinclair basic, this command pauses the execution for the given number of frames
99
(1 frame equals to 1/50th of second in Europe, 1/60th of second in the US: this is usually in
10-
sync with the electricity AC frecuency) or until a key is pressed.
10+
sync with the electricity AC frequency) or until a key is pressed.
1111

1212
Bear in mind the number 0 is actually taken as 65536.
1313
Currently this sentence uses the Sinclair BASIC ROM, so **it needs interruptions enabled**.

docs/zxb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ ZXB provides several (and useful) command line options. To see them, just type *
7676
-T, --tzx Sets output format to tzx (default is .bin)
7777
-t, --tap Sets output format to tap (default is .bin)
7878
-B, --BASIC Creates a BASIC loader which loads the rest of the
79-
CODE. Requires -T ot -t
79+
CODE. Requires -T or -t
8080
-a, --autorun Sets the program to be run once loaded
8181
-A, --asm Sets output format to asm
8282
-S ORG, --org ORG Start of machine code. By default 32768
@@ -184,7 +184,7 @@ and it size is fixed (won't change during program execution).
184184
* **--debug-memory**
185185
<br /> During your program execution, using strings might fail due to lack of memory, but your program won't report it
186186
and will continue executing (except the strings not fitting into the heap will be converted to `NULL` string or `""`).
187-
The same aplies to other dynamic objects. So enabling this flag, will make your program to stop reporting a
187+
The same applies to other dynamic objects. So enabling this flag, will make your program to stop reporting a
188188
ROM _Out of memory_ error. This will add a little overhead to your program execution, but it's useful to detect
189189
_Out of Memory_ errors.
190190

0 commit comments

Comments
 (0)