Skip to content

Commit f96dfa9

Browse files
wheremyfoodatAntonio Vivace
authored and
Antonio Vivace
committed
Fixed typo (Comparision -> Comparison)
1 parent 01710a1 commit f96dfa9

File tree

5 files changed

+39
-39
lines changed

5 files changed

+39
-39
lines changed

Diff for: content/CPU_Registers_and_Flags.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This bit becomes set (1) if the result of an operation has been zero
3535
### The Carry Flag (C, or Cy)
3636

3737
Becomes set when the result of an addition became bigger than FFh (8bit)
38-
or FFFFh (16bit). Or when the result of a subtraction or comparision
38+
or FFFFh (16bit). Or when the result of a subtraction or Comparison
3939
became less than zero (much as for Z80 and 80x86 CPUs, but unlike as for
4040
65XX and ARM CPUs). Also the flag becomes set when a rotate/shift
4141
operation has shifted-out a \"1\"-bit. Used for conditional jumps, and

Diff for: content/Pan_Docs.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Functions](SGB_Functions "wikilink")
2020
### CPU Specifications
2121

2222
[CPU Registers and Flags](CPU_Registers_and_Flags "wikilink") - [CPU
23-
Instruction Set](CPU_Instruction_Set "wikilink") - [CPU Comparision with
24-
Z80](CPU_Comparision_with_Z80 "wikilink")
23+
Instruction Set](CPU_Instruction_Set "wikilink") - [CPU Comparison with
24+
Z80](CPU_Comparison_with_Z80 "wikilink")
2525

2626
### Cartridges
2727

Diff for: content/index.mdpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ title: "Pan Docs"
2525
- CPU Specifications
2626
- [Registers and Flags](#registers-and-flags)
2727
- [Instruction Set](#instruction-set)
28-
- [Comparision with Z80](#comparison-with-z80)
28+
- [Comparison with Z80](#comparison-with-z80)
2929
- Cartridges
3030
- [Cartridge header](#the-cartridge-header)
3131
- [MBC1](#mbc1)
@@ -116,7 +116,7 @@ title: "Pan Docs"
116116

117117
# Comparison with Z80
118118

119-
!INCLUDE "CPU_Comparision_with_Z80.md", 1
119+
!INCLUDE "CPU_Comparison_with_Z80.md", 1
120120

121121
# The Cartridge Header
122122

Diff for: historical/2001-Oct-pandocs.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ I/O Ports
1919
CPU Specifications
2020
--> CPU Registers and Flags
2121
--> CPU Instruction Set
22-
--> CPU Comparision with Z80
22+
--> CPU Comparison with Z80
2323

2424
Cartridges
2525
--> The Cartridge Header
@@ -2099,7 +2099,7 @@ for conditional jumps.
20992099

21002100
The Carry Flag (C, or Cy)
21012101
Becomes set when the result of an addition became bigger than FFh (8bit) or
2102-
FFFFh (16bit). Or when the result of a subtraction or comparision became less
2102+
FFFFh (16bit). Or when the result of a subtraction or Comparison became less
21032103
than zero (much as for Z80 and 80x86 CPUs, but unlike as for 65XX and ARM
21042104
CPUs). Also the flag becomes set when a rotate/shift operation has shifted-out
21052105
a "1"-bit.
@@ -2247,16 +2247,16 @@ GMB Jumpcommands
22472247
reti D9 16 ---- return and enable interrupts (IME=1)
22482248
rst n xx 16 ---- call to 00,08,10,18,20,28,30,38
22492249

2250-
CPU Comparision with Z80
2250+
CPU Comparison with Z80
22512251
------------------------
22522252

2253-
Comparision with 8080
2253+
Comparison with 8080
22542254
Basically, the gameboy CPU works more like an older 8080 CPU rather than like
22552255
a more powerful Z80 CPU. It is, however, supporting CB-prefixed instructions.
22562256
Also, all known gameboy assemblers using the more obvious Z80-style syntax,
22572257
rather than the chaotic 8080-style syntax.
22582258

2259-
Comparision with Z80
2259+
Comparison with Z80
22602260
Any DD-, ED-, and FD-prefixed instructions are missing, that means no IX-,
22612261
IY-registers, no block commands, and some other missing commands.
22622262
All exchange instructions have been removed (including total absence of second

0 commit comments

Comments
 (0)